Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-33186 (GCVE-0-2026-33186)
Vulnerability from cvelistv5 – Published: 2026-03-20 22:23 – Updated: 2026-03-24 18:09- CWE-285 - Improper Authorization
| URL | Tags |
|---|---|
| https://github.com/grpc/grpc-go/security/advisori… | x_refsource_CONFIRM |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-33186",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "yes"
},
{
"Technical Impact": "partial"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-03-24T18:08:38.989284Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-03-24T18:09:13.422Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
}
],
"cna": {
"affected": [
{
"product": "grpc-go",
"vendor": "grpc",
"versions": [
{
"status": "affected",
"version": "\u003c 1.79.3"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \"deny\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \"allow\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \"deny\" rules for canonical paths but allows other requests by default (a fallback \"allow\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening."
}
],
"metrics": [
{
"cvssV3_1": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
}
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-285",
"description": "CWE-285: Improper Authorization",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-03-20T22:23:32.147Z",
"orgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"shortName": "GitHub_M"
},
"references": [
{
"name": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"tags": [
"x_refsource_CONFIRM"
],
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"source": {
"advisory": "GHSA-p77j-4mvh-x3m3",
"discovery": "UNKNOWN"
},
"title": "gRPC-Go has an authorization bypass via missing leading slash in :path"
}
},
"cveMetadata": {
"assignerOrgId": "a0819718-46f1-4df5-94e2-005712e83aaa",
"assignerShortName": "GitHub_M",
"cveId": "CVE-2026-33186",
"datePublished": "2026-03-20T22:23:32.147Z",
"dateReserved": "2026-03-17T22:16:36.720Z",
"dateUpdated": "2026-03-24T18:09:13.422Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-33186",
"date": "2026-06-28",
"epss": "0.00522",
"percentile": "0.40351"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-33186\",\"sourceIdentifier\":\"security-advisories@github.com\",\"published\":\"2026-03-20T23:16:45.180\",\"lastModified\":\"2026-06-17T10:37:05.900\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \\\"deny\\\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \\\"allow\\\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \\\"deny\\\" rules for canonical paths but allows other requests by default (a fallback \\\"allow\\\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.\"},{\"lang\":\"es\",\"value\":\"gRPC-Go es la implementaci\u00f3n en lenguaje Go de gRPC. Las versiones anteriores a la 1.79.3 tienen un bypass de autorizaci\u00f3n resultante de una validaci\u00f3n de entrada incorrecta del pseudo-encabezado HTTP/2 \u0027:path\u0027. El servidor gRPC-Go era demasiado indulgente en su l\u00f3gica de enrutamiento, aceptando solicitudes donde el \u0027:path\u0027 omit\u00eda la barra inicial obligatoria (por ejemplo, \u0027Service/Method\u0027 en lugar de \u0027/Service/Method\u0027). Si bien el servidor enrut\u00f3 con \u00e9xito estas solicitudes al gestor correcto, los interceptores de autorizaci\u00f3n (incluido el paquete oficial \u0027grpc/authz\u0027) evaluaron la cadena de ruta cruda y no can\u00f3nica. En consecuencia, las reglas de \u0027denegaci\u00f3n\u0027 definidas usando rutas can\u00f3nicas (que comienzan con \u0027/\u0027) no lograron coincidir con la solicitud entrante, permitiendo que bypassara la pol\u00edtica si una regla de \u0027permiso\u0027 de respaldo estaba presente. Esto afecta a los servidores gRPC-Go que utilizan interceptores de autorizaci\u00f3n basados en rutas, como la implementaci\u00f3n oficial de RBAC en \u0027google.golang.org/grpc/authz\u0027 o interceptores personalizados que dependen de \u0027info.FullMethod\u0027 o \u0027grpc.Method(ctx)\u0027; Y que tienen una pol\u00edtica de seguridad que contiene reglas de \u0027denegaci\u00f3n\u0027 espec\u00edficas para rutas can\u00f3nicas pero permite otras solicitudes por defecto (una regla de \u0027permiso\u0027 de respaldo). La vulnerabilidad es explotable por un atacante que puede enviar tramas HTTP/2 crudas con encabezados \u0027:path\u0027 malformados directamente al servidor gRPC. La correcci\u00f3n en la versi\u00f3n 1.79.3 asegura que cualquier solicitud con un \u0027:path\u0027 que no comience con una barra inicial sea inmediatamente rechazada con un error \u0027codes.Unimplemented\u0027, impidiendo que llegue a los interceptores de autorizaci\u00f3n o gestores con una cadena de ruta no can\u00f3nica. Si bien la actualizaci\u00f3n es la ruta m\u00e1s segura y recomendada, los usuarios pueden mitigar la vulnerabilidad utilizando uno de los siguientes m\u00e9todos: Usar un interceptor de validaci\u00f3n (mitigaci\u00f3n recomendada); normalizaci\u00f3n a nivel de infraestructura; y/o endurecimiento de pol\u00edticas.\"}],\"affected\":[{\"source\":\"security-advisories@github.com\",\"affectedData\":[{\"vendor\":\"grpc\",\"product\":\"grpc-go\",\"versions\":[{\"version\":\"\u003c 1.79.3\",\"status\":\"affected\"}]}]}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\",\"baseScore\":9.1,\"baseSeverity\":\"CRITICAL\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"NONE\"},\"exploitabilityScore\":3.9,\"impactScore\":5.2}],\"ssvcV203\":[{\"source\":\"134c704f-9b21-4f2e-91b3-4a467353bcc0\",\"ssvcData\":{\"timestamp\":\"2026-03-24T18:08:38.989284Z\",\"id\":\"CVE-2026-33186\",\"options\":[{\"exploitation\":\"none\"},{\"automatable\":\"yes\"},{\"technicalImpact\":\"partial\"}],\"role\":\"CISA Coordinator\",\"version\":\"2.0.3\"}}]},\"weaknesses\":[{\"source\":\"security-advisories@github.com\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-285\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:a:grpc:grpc:*:*:*:*:*:go:*:*\",\"versionEndExcluding\":\"1.79.3\",\"matchCriteriaId\":\"D5AB3ED0-D11B-461E-B2B1-627D5CCEA236\"}]}]}],\"references\":[{\"url\":\"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\",\"source\":\"security-advisories@github.com\",\"tags\":[\"Mitigation\",\"Vendor Advisory\"]}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-33186\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"yes\"}, {\"Technical Impact\": \"partial\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-03-24T18:08:38.989284Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-03-24T18:09:03.096Z\"}}], \"cna\": {\"title\": \"gRPC-Go has an authorization bypass via missing leading slash in :path\", \"source\": {\"advisory\": \"GHSA-p77j-4mvh-x3m3\", \"discovery\": \"UNKNOWN\"}, \"metrics\": [{\"cvssV3_1\": {\"scope\": \"UNCHANGED\", \"version\": \"3.1\", \"baseScore\": 9.1, \"attackVector\": \"NETWORK\", \"baseSeverity\": \"CRITICAL\", \"vectorString\": \"CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N\", \"integrityImpact\": \"HIGH\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"LOW\", \"availabilityImpact\": \"NONE\", \"privilegesRequired\": \"NONE\", \"confidentialityImpact\": \"HIGH\"}}], \"affected\": [{\"vendor\": \"grpc\", \"product\": \"grpc-go\", \"versions\": [{\"status\": \"affected\", \"version\": \"\u003c 1.79.3\"}]}], \"references\": [{\"url\": \"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\", \"name\": \"https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3\", \"tags\": [\"x_refsource_CONFIRM\"]}], \"descriptions\": [{\"lang\": \"en\", \"value\": \"gRPC-Go is the Go language implementation of gRPC. Versions prior to 1.79.3 have an authorization bypass resulting from improper input validation of the HTTP/2 `:path` pseudo-header. The gRPC-Go server was too lenient in its routing logic, accepting requests where the `:path` omitted the mandatory leading slash (e.g., `Service/Method` instead of `/Service/Method`). While the server successfully routed these requests to the correct handler, authorization interceptors (including the official `grpc/authz` package) evaluated the raw, non-canonical path string. Consequently, \\\"deny\\\" rules defined using canonical paths (starting with `/`) failed to match the incoming request, allowing it to bypass the policy if a fallback \\\"allow\\\" rule was present. This affects gRPC-Go servers that use path-based authorization interceptors, such as the official RBAC implementation in `google.golang.org/grpc/authz` or custom interceptors relying on `info.FullMethod` or `grpc.Method(ctx)`; AND that have a security policy contains specific \\\"deny\\\" rules for canonical paths but allows other requests by default (a fallback \\\"allow\\\" rule). The vulnerability is exploitable by an attacker who can send raw HTTP/2 frames with malformed `:path` headers directly to the gRPC server. The fix in version 1.79.3 ensures that any request with a `:path` that does not start with a leading slash is immediately rejected with a `codes.Unimplemented` error, preventing it from reaching authorization interceptors or handlers with a non-canonical path string. While upgrading is the most secure and recommended path, users can mitigate the vulnerability using one of the following methods: Use a validating interceptor (recommended mitigation); infrastructure-level normalization; and/or policy hardening.\"}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-285\", \"description\": \"CWE-285: Improper Authorization\"}]}], \"providerMetadata\": {\"orgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"shortName\": \"GitHub_M\", \"dateUpdated\": \"2026-03-20T22:23:32.147Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-33186\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-03-24T18:09:13.422Z\", \"dateReserved\": \"2026-03-17T22:16:36.720Z\", \"assignerOrgId\": \"a0819718-46f1-4df5-94e2-005712e83aaa\", \"datePublished\": \"2026-03-20T22:23:32.147Z\", \"assignerShortName\": \"GitHub_M\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
RHSA-2026:11217
Vulnerability from csaf_redhat - Published: 2026-04-27 23:24 - Updated: 2026-06-28 22:55The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le | — |
Workaround
|
A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64 | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x | — | ||
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le | — |
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le | — |
Workaround
|
A flaw was found in github.com/jackc/pgx. This memory-safety vulnerability could potentially lead to unexpected behavior or system instability.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64 | — |
Workaround
|
A flaw was found in github.com/jackc/pgx, a PostgreSQL driver for Go. This memory-safety vulnerability could allow an attacker to cause various impacts, such as denial of service (DoS) or potentially arbitrary code execution, by exploiting memory corruption issues. The exact method of exploitation and specific consequences would depend on the nature of the memory corruption.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64 | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64 | — |
Workaround
|
A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_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": "Updated images are now available for Red Hat Advanced Cluster Security\n(RHACS), which typically include new features, bug fixes, and/or\nsecurity patches.",
"title": "Topic"
},
{
"category": "general",
"text": "See the release notes (link in the references section) for a\ndescription of the fixes and enhancements in this particular release.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:11217",
"url": "https://access.redhat.com/errata/RHSA-2026:11217"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25679",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29063",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32286",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33815",
"url": "https://access.redhat.com/security/cve/CVE-2026-33815"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33816",
"url": "https://access.redhat.com/security/cve/CVE-2026-33816"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35469",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.8/html-single/release_notes/index#about-this-release-4811_release-notes-48",
"url": "https://docs.redhat.com/en/documentation/red_hat_advanced_cluster_security_for_kubernetes/4.8/html-single/release_notes/index#about-this-release-4811_release-notes-48"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_11217.json"
}
],
"title": "Red Hat Security Advisory: RHACS 4.8.11 security and bug fix update",
"tracking": {
"current_release_date": "2026-06-28T22:55:00+00:00",
"generator": {
"date": "2026-06-28T22:55:00+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:11217",
"initial_release_date": "2026-04-27T23:24:47+00:00",
"revision_history": [
{
"date": "2026-04-27T23:24:47+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-13T08:38:59+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:00+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product": {
"name": "Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:advanced_cluster_security:4.8::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Security for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3Ab950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776418904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3Abdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-operator-bundle@sha256%3A0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Af1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Aac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Aab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3Ac6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e?arch=amd64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3Aedc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776418904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Ab4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3A3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Ab5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Adaf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3Af6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b?arch=arm64\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3Aaa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776418904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3A5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Ac5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3A030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3A7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3A0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b?arch=ppc64le\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-central-db-rhel8@sha256%3A5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-collector-rhel8@sha256%3A75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776418904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-main-rhel8@sha256%3Aa8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-rhel8-operator@sha256%3A24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-roxctl-rhel8@sha256%3Ad769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-rhel8@sha256%3Abb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256%3Ad639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256%3Ad88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256%3A9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1776727747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-rhel8@sha256%3A8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"product": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"product_id": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"product_identification_helper": {
"purl": "pkg:oci/rhacs-scanner-v4-db-rhel8@sha256%3A135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55?arch=s390x\u0026repository_url=registry.redhat.io/advanced-cluster-security\u0026tag=1777307791"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.8",
"product_id": "Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
},
"product_reference": "registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Security for Kubernetes 4.8"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-27T23:24:47+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11217"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-29063",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-03-06T19:00:57.982727+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445291"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this vulnerability requires that an attacker is able to provide arbitrary data to clients of this library in a way that calls the affected functions with data the attacker controls. In most deployments, the ability to provide data in this fashion requires that an attacker has some degree of privileges to access the affected applications.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "RHBZ#2445291",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445291"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29063",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29063"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw",
"url": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw"
}
],
"release_date": "2026-03-06T18:25:22.438000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-27T23:24:47+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11217"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-27T23:24:47+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11217"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_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-27T23:24:47+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11217"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33815",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2026-04-07T16:01:25.130006+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455975"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/jackc/pgx. This memory-safety vulnerability could potentially lead to unexpected behavior or system instability.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgx/v5: github.com/jackc/pgx: Memory-safety vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33815"
},
{
"category": "external",
"summary": "RHBZ#2455975",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455975"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33815",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33815"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33815",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33815"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4771",
"url": "https://pkg.go.dev/vuln/GO-2026-4771"
}
],
"release_date": "2026-04-07T15:19:24.344000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-27T23:24:47+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11217"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgx/v5: github.com/jackc/pgx: Memory-safety vulnerability"
},
{
"cve": "CVE-2026-33816",
"cwe": {
"id": "CWE-787",
"name": "Out-of-bounds Write"
},
"discovery_date": "2026-04-07T16:01:14.142946+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455972"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in github.com/jackc/pgx, a PostgreSQL driver for Go. This memory-safety vulnerability could allow an attacker to cause various impacts, such as denial of service (DoS) or potentially arbitrary code execution, by exploiting memory corruption issues. The exact method of exploitation and specific consequences would depend on the nature of the memory corruption.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgx/v5: github.com/jackc/pgx: Memory-safety vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33816"
},
{
"category": "external",
"summary": "RHBZ#2455972",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455972"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33816",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33816"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33816",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33816"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4772",
"url": "https://pkg.go.dev/vuln/GO-2026-4772"
}
],
"release_date": "2026-04-07T15:19:24.529000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-27T23:24:47+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11217"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgx/v5: github.com/jackc/pgx: Memory-safety vulnerability"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_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-27T23:24:47+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11217"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_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 Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
},
{
"cve": "CVE-2026-35469",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-13T03:52:35+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-27T23:24:47+00:00",
"details": "If you are using an earlier version of RHACS, you are advised to\nupgrade to the version of RHACS mentioned in the synopsis and release\nnotes in order to take advantage of the enhancements, bug fixes, and/or\nsecurity patches in the release.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11217"
},
{
"category": "workaround",
"details": "To mitigate this issue, review and restrict the assignment of Kubernetes cluster roles `pods/portforward (create)`, `pods/exec (create)`, `pods/attach (create)`, and `nodes/proxy (get/create)` to untrusted users or service accounts. Ensure that only authorized and necessary entities possess these permissions. Modifying RBAC policies can impact the functionality of applications and services that rely on these permissions; careful testing is recommended.",
"product_ids": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:5fab4694b598d616ca775835520c8d062940bec75a5bd820b2290134529b280b_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:677f693e3db20c1f56c9d51905fc45b7ea1efce12e3fc6cf90486f2c9f1d21b4_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:aa5d6eb26500ce81f59a43047d24e9a7eaea4e1d3ab4d428e05fb1298aef1b97_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8@sha256:edc41b3c96f9dd9bd96851d4d6cce65a23da484af08b48caba90570960a2e53a_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:4c594546133a2b8ffb3f142ea1e0d2353e47192f497931b6e81bc6e348f8b221_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:75b567224f0a92727d96d78609e8b896adf742c0bb2c4c29c7d2f6cf4f1c899a_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:8fb531d320ca0499582878bca05bbc0f1ed8a5211d219fc6705e398972010f7f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8@sha256:b950a88c68312126e9d448ccc4bca130733d8f8d54cc38ca1a697bb4199d5bbb_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5804b537b255c13107f7ab6d48b445c4210f4274e19a011d37b3302b35a965e5_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:73f57091087f8e418c77f29624916bbf9f668c6ff172e4da93d3b1fea3234642_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:a8008b13ae24b0ccc4ab75e1642e2eb995e7d5e62e18acc5383b413fc6c06cb3_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:b4a010d33119f95358539599665929e003dc366c73bbdbcf06d37f4e086c77c1_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle@sha256:0b617b6f12fe77636cbd3036d07b299165acb932edd407cc066987026c51bc2f_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:24732ee9e493c03e816d0ccc4874f9f27211a7de11fc8f345f0976c9e72d8210_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:91f791cb74011fb5e0832dfb50864d33439ab94deed91fe248430e63350617a6_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:9ef18af4c57b3f67065233e46129887d9b703fe65f39cecc83f41e3ba18542ce_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator@sha256:bdb808907802ae12515143661358af8e374bb635f48bc89d983b3f2cf5360d21_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:3290bf6033dffb72084afd9eb038f0268b76ea1112121e587da172d7cd432e68_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:958128da0821405d5dccc557c61336b9d19eb752eb54e667dbca3bc1ea97ec85_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:c5c8f2959b593149bfc654e5c212144c1640441d6512d91b0c0ed6a7b9474cbe_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8@sha256:d769ee8de44cc320ffcc68e76f43d63a381207362a9ef1e182912aaffa1a4dca_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:7f9e747c719f1afd49cda081cb4c3f3b7781a69a885c588e5ca1975d7fca7a75_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ac3505103967758b81d8aaa7b026aee83a8fee477bf629c280d9e867ea229376_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b5aacc4fb7668db525a499bbe7561910f0c563afb2503280745ec6a344063df3_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:d639affbc1ee9431f734d8ab9bde34bf7cd29be42d6fbb07060ba02849aa8722_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:0a93ca98cec909febd731a080362e5c371b8cdc1aa8772a632a012c2c915166f_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:ab6f139ae0d09334b2b5e499357b0fa14dae54c7a76560d5710ebb3d8fee5bbe_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:d88d142a7f919f6eff8f66c75fdffe3c0efb904273ece05488aad1153c89531f_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:daf11d42d49186f0b1dae8c4be0bb48c7009edbdc25bd84c54bbcad78a9a56ad_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:030180ba7545abfcb87c1e777889d1e23dc44e8e8fb1dbe1ab271ad9f5a4c5b9_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:15481465f2235fc95d36d057ea4dfdb15eee9357aa633627e6367c5adcd08536_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:bb23354b4fa307936ef344d6cc5fa070aaeddd41fb689a18074d2bfa3ac99fa4_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8@sha256:f1fe398f88b8a6ec2cf87b7d09442de5e5c20d84f6f4a2a3de5bd7f46d2894b7_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:134318dd1871cb7ba5227fcf76f5fd58c695f652ee2f7a21e9478231cd548046_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:5a36b4c601c1bdd63fda2d8ce091e9b1de3722a2b7d2b1c3a315fd0d4f722b8c_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:9b97a9b3b37059dfe3cb65ae8518b1c63723ae47b35bacc8b53a62992f50a900_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:f6cfa01a26be47fb5e8c7169aa33f18dbcdacb064c1cf425c322dfc4f1164305_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:08624e44eb42590abc4e4a745c3fbab9dc5688990f106137310bda05b76df69b_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:135321dc6a5cdb09491c3f2cbceb85580e375702a1c59cd0f0132e5d31a93e55_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:4686585e005415d888f1a4d9d9b51fc1dd52c91510be4e4797efc59a9777101b_ppc64le",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-db-rhel8@sha256:c6eb2c7591ec559ccbe154b5fabedf0fe273251f7b47ab247a080f2a041da55e_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:02dbaad4b927c4238d24897704cdcc03467fc8ec2d59ee4b5417b7ac9f15f6f9_amd64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:6738e7b27b4caa6f1af635709ceb260269d7e82b5a3473d57bda18e8fffd25dd_arm64",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:8c646f72eee74416d1994de422e29bc76973ed3fdd9e0751769b739f402d55f7_s390x",
"Red Hat Advanced Cluster Security for Kubernetes 4.8:registry.redhat.io/advanced-cluster-security/rhacs-scanner-v4-rhel8@sha256:96b78dce12edbb414d79979d6a396da934c6f019554597f4ded6c23535240629_ppc64le"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
RHSA-2026:11330
Vulnerability from csaf_redhat - Published: 2026-04-28 07:16 - Updated: 2026-06-28 22:55A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64 | — |
Workaround
|
A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod's filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64 | — |
Workaround
|
A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64 | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Builds 1.6.5",
"title": "Topic"
},
{
"category": "general",
"text": "Releases of Red Hat OpenShift Builds 1.6.5",
"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:11330",
"url": "https://access.redhat.com/errata/RHSA-2026:11330"
},
{
"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-33810",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/builds_for_red_hat_openshift/1.6",
"url": "https://docs.redhat.com/en/documentation/builds_for_red_hat_openshift/1.6"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_11330.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Builds 1.6.5",
"tracking": {
"current_release_date": "2026-06-28T22:55:00+00:00",
"generator": {
"date": "2026-06-28T22:55:00+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:11330",
"initial_release_date": "2026-04-28T07:16:04+00:00",
"revision_history": [
{
"date": "2026-04-28T07:16:04+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-28T07:16:12+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:00+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Builds 1.6.5",
"product": {
"name": "Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_builds:1.6::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Builds"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-controller-rhel9@sha256%3A2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776849392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-git-cloner-rhel9@sha256%3A64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847748"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-bundler-rhel9@sha256%3Aa22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776848853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-processing-rhel9@sha256%3A549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-rhel9-operator@sha256%3A1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776859898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-operator-bundle@sha256%3A60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776937737"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-rhel9@sha256%3Af54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776852121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-webhook-rhel9@sha256%3A0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776851845"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-waiters-rhel9@sha256%3A71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-webhook-rhel9@sha256%3Ac6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776848251"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-controller-rhel9@sha256%3A092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776849392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-git-cloner-rhel9@sha256%3A31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847748"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-bundler-rhel9@sha256%3A596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776848853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-processing-rhel9@sha256%3Ac95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-rhel9-operator@sha256%3A5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776859898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-rhel9@sha256%3Ad6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776852121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-webhook-rhel9@sha256%3Ad69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776851845"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-waiters-rhel9@sha256%3Ac44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-webhook-rhel9@sha256%3A3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776848251"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-controller-rhel9@sha256%3A25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776849392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-git-cloner-rhel9@sha256%3A355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847748"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-bundler-rhel9@sha256%3A3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776848853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-processing-rhel9@sha256%3A5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-rhel9-operator@sha256%3Ae1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776859898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-rhel9@sha256%3Ac5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776852121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-webhook-rhel9@sha256%3Ae095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776851845"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-waiters-rhel9@sha256%3A78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-webhook-rhel9@sha256%3Ab3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776848251"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-controller-rhel9@sha256%3A7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776849392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-git-cloner-rhel9@sha256%3A2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847748"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-bundler-rhel9@sha256%3Aa9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776848853"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-processing-rhel9@sha256%3A54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846586"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-rhel9-operator@sha256%3A26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776859898"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-rhel9@sha256%3Ad56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776852121"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-webhook-rhel9@sha256%3A7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776851845"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-waiters-rhel9@sha256%3Af4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-webhook-rhel9@sha256%3A26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776848251"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64 as a component of Red Hat OpenShift Builds 1.6.5",
"product_id": "Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.6.5"
}
]
},
"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 Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_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 Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_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-28T07:16:04+00:00",
"details": "It is recommended that existing users of Red Hat OpenShift Builds 1.6.4 upgrades to to 1.6.5",
"product_ids": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11330"
},
{
"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 Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_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 Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33211",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-24T00:02:20.093480+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450554"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod\u0027s filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Tekton Pipelines: github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure via path traversal in git resolver",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to have the permission to create ResolutionRequests (e.g., by creating TaskRuns or PipelineRuns that use the git resolver) within at least one specific namespace, limiting the exposure of this issue to authenticated users. Also, an attacker can read any file readable by the resolver pod process, including cluster secrets, allowing an escalation of privileges from namespace-scoped access to cluster-wide access. Due to these reasons, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_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-28T07:16:04+00:00",
"details": "It is recommended that existing users of Red Hat OpenShift Builds 1.6.4 upgrades to to 1.6.5",
"product_ids": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11330"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, restrict the creation of ResolutionRequests to trusted users and service accounts. Implement strict Role-Based Access Control (RBAC) policies to limit which tenants can create TaskRuns or PipelineRuns that utilize the Tekton Pipelines git resolver. This reduces the exposure by preventing unauthorized access to the resolver pod\u0027s filesystem.",
"product_ids": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.6,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_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-33810",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-08T02:01:09.100830+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456335"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "RHBZ#2456335",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456335"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33810",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33810"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://go.dev/cl/763763",
"url": "https://go.dev/cl/763763"
},
{
"category": "external",
"summary": "https://go.dev/issue/78332",
"url": "https://go.dev/issue/78332"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4866",
"url": "https://pkg.go.dev/vuln/GO-2026-4866"
}
],
"release_date": "2026-04-08T01:06:56.546000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-28T07:16:04+00:00",
"details": "It is recommended that existing users of Red Hat OpenShift Builds 1.6.4 upgrades to to 1.6.5",
"product_ids": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11330"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:092c9b4af55870d904beac952acf0fd914a2e784472888bb9f2c108548ff4906_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:25a9ca58f1104d83e0e312baf241f3eb048220c22a0065eed70106d9991faea4_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:2c6b079cf3184539f06634afcb35784ac74110c04fec36dfa80c2b0789d9099d_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:7b579fdc1d1dca3f32c2172eddb899ef3f8ff39d7af5cbed854d48e1d9e27675_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:2a33081f6d32826d53821e1aea686e1a6e8cb30fea8e601c00729c06511b98c6_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:31af187e314a843c4c02edd119d5edc2c260baca4d9a4ec2347f80f5511d6d3f_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:355cfa27d099cce3743ffa8432d2070ae3f21a446b560f6c1c5146b7351d116a_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:64d5bfb3e3a9861b3cefdb49c0f9b286aad11ccb31867092de08e48630694f82_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3d20f5041cd11c838fc15148f60650ae0824b4c7816eb50152a28693443b0cd0_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:596cfba3fdac5cd9ee725f6b9e0bc640eaf7e933d019d9d57ea840592ec72f23_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a22a2cca1f48ee743a15c68ca22d1d76943c25b2069e80a4bc1275c8157284db_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a9d691eec41e370daff6737ed9d0b8c018b5426ff195b77897fd579846858e39_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54890d05d56aeee46f051f42959500e00f2c748e9fdb2f1100226d8b4b976a47_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:549f2d54aaa66f9ab68e08f49e4f0cd95ffbbc93607ef7a112b74b177e57cfd0_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:5664f48403387a9e64370337d3ea5eb30ec27336f6e8f47a3a8a3ba0fe96741c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:c95f763b803f53276670cea4fdf289983e472361a00a6d7da0bb56b3e857a935_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:60bfc1aeb95ff74fd2d8bd29700994594c92b93795b63f02fd0d7bb2d3d6fba7_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:1c0d155195bfd251b40da10e153c8a738250f14253f337b198476740cb7bd81a_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:26fdde499994a4be0eb277bbbca899061384f20673672ef30ed301d792b3108d_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5d08c7ee6886747dc077faa7f1e4e696b5ad29cc4dcc8fd2c4f3d7a434f47f9b_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:e1cdb58bf2783a9a50346e1690f51b09e175c8ebb737b11332658d85bcb645e9_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:c5083edbd43692dc5ef5b0cf14417eea19412c0927ede39a87ade36515cf16f1_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d56042518051b3e4dbef3da9f13d74fd8e8a6b9ad8520965052f1522247b70ef_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:d6401dc97f1adeafcfb8a34e3c1fe8230cd2ca6bb7c4245ef875a4b3fa35b014_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:f54ab8388a0f593c2426c240c7d50fd7f3f2263e1c88f7726dbbe2ebbed38896_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:0d629bbf41a55434b40545e12c5f0d95e357b0fd74303feec657918b90321642_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:7d6aecb4a7e98dcabc77c3043e214bec9fa521af9c6a048ece876ba9f294dce8_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:d69d7290c5e07301e9397df551e97d8d81795ba7c711d95f60bd178fc39f1434_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:e095cffba13badc4aab65f9920f8e618c9fe4411d6d53d8b160716a31fe2d6e7_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:71f49240685245565f35d7d4b6d7d55b442cb61bc7c0f4d25c5529ca9187ae9f_amd64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:78775c452a2c5ddb3568b677c2790815fb2a2d6afacbfacccdaf68b79c8fe39c_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:c44d2ad3d716e7c753ec538654d25c42d80539071f1d5f81df4a8fd5e76c7a58_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f4752a62de9c94e0f84aaa6cddfeb4a5cbecab6c83147b72b6f05ddef23fe192_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:26f519f9f0e7e41f7f6b12bfd2f968bfb5196f05781493752e17a85d09b0b976_s390x",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:3b1112d42f42c721287e1da5e5a87b6832889ed532b1acae27caeb64f1bb44f9_arm64",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b3ac0453a1d16b2a9d1314991cd7642d637c5d9af3e884aabd88e4e9b73c59c6_ppc64le",
"Red Hat OpenShift Builds 1.6.5:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:c6491240cf919793d2d0646e7cd505f7c45f18655c600593e06c98324bf0dc71_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application"
}
]
}
RHSA-2026:11331
Vulnerability from csaf_redhat - Published: 2026-04-28 07:19 - Updated: 2026-06-28 22:55A 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 OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x | — |
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x | — |
Workaround
|
A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x | — |
Workaround
|
A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod's filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x | — |
Workaround
|
A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat OpenShift Builds 1.7.2",
"title": "Topic"
},
{
"category": "general",
"text": "Releases of Red Hat OpenShift Builds 1.7.2",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:11331",
"url": "https://access.redhat.com/errata/RHSA-2026:11331"
},
{
"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-33810",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/builds_for_red_hat_openshift/1.7",
"url": "https://docs.redhat.com/en/documentation/builds_for_red_hat_openshift/1.7"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_11331.json"
}
],
"title": "Red Hat Security Advisory: Red Hat OpenShift Builds 1.7.2",
"tracking": {
"current_release_date": "2026-06-28T22:55:01+00:00",
"generator": {
"date": "2026-06-28T22:55:01+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:11331",
"initial_release_date": "2026-04-28T07:19:47+00:00",
"revision_history": [
{
"date": "2026-04-28T07:19:47+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-28T07:20:00+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55: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 Builds 1.7.3",
"product": {
"name": "Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift_builds:1.7::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Builds"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-controller-rhel9@sha256%3A5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-git-cloner-rhel9@sha256%3A165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847166"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-bundler-rhel9@sha256%3A985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-processing-rhel9@sha256%3Af5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776849396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-rhel9-operator@sha256%3A5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776860241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-operator-bundle@sha256%3A093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776937971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-rhel9@sha256%3A16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776851459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-webhook-rhel9@sha256%3Af2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776852111"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-waiters-rhel9@sha256%3A153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-webhook-rhel9@sha256%3A6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495?arch=amd64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846493"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-controller-rhel9@sha256%3Aeb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-git-cloner-rhel9@sha256%3A7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847166"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-bundler-rhel9@sha256%3A0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-processing-rhel9@sha256%3A2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776849396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-rhel9-operator@sha256%3A382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776860241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-rhel9@sha256%3A4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776851459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-webhook-rhel9@sha256%3Ab020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776852111"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-waiters-rhel9@sha256%3Acd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-webhook-rhel9@sha256%3A1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846493"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-controller-rhel9@sha256%3A6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-git-cloner-rhel9@sha256%3Aec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847166"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-bundler-rhel9@sha256%3A4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-processing-rhel9@sha256%3A9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776849396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-rhel9-operator@sha256%3A190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776860241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-rhel9@sha256%3A678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776851459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-webhook-rhel9@sha256%3A88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776852111"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-waiters-rhel9@sha256%3Af17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-webhook-rhel9@sha256%3A779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846493"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-controller-rhel9@sha256%3A5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-git-cloner-rhel9@sha256%3Aa4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776847166"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-bundler-rhel9@sha256%3A8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846372"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-image-processing-rhel9@sha256%3A679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776849396"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-rhel9-operator@sha256%3A7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776860241"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-rhel9@sha256%3Ab39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776851459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-shared-resource-webhook-rhel9@sha256%3A1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776852111"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-waiters-rhel9@sha256%3Ab2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846936"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x",
"product": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x",
"product_id": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift-builds-webhook-rhel9@sha256%3Ae593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8?arch=s390x\u0026repository_url=registry.redhat.io/openshift-builds\u0026tag=1776846493"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64 as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x as a component of Red Hat OpenShift Builds 1.7.3",
"product_id": "Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
},
"product_reference": "registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Builds 1.7.3"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-68121",
"discovery_date": "2026-02-05T18:01:30.086058+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"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 OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
},
"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-28T07:19:47+00:00",
"details": "It is recommended that existing users of Red Hat OpenShift Builds 1.7.1 upgrades to to 1.7.2",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11331"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"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",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-28T07:19:47+00:00",
"details": "It is recommended that existing users of Red Hat OpenShift Builds 1.7.1 upgrades to to 1.7.2",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11331"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27137",
"cwe": {
"id": "CWE-295",
"name": "Improper Certificate Validation"
},
"discovery_date": "2026-03-06T22:01:38.859733+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445345"
}
],
"notes": [
{
"category": "description",
"text": "A certificate validation flaw has been discovered in the golang crypto/x509 module. When verifying a certificate chain which contains a certificate containing multiple email address constraints which share common local portions but different domain portions, these constraints will not be properly applied, and only the last constraint will be considered.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: Incorrect enforcement of email constraints in crypto/x509",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27137"
},
{
"category": "external",
"summary": "RHBZ#2445345",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445345"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27137",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27137"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27137"
},
{
"category": "external",
"summary": "https://go.dev/cl/752182",
"url": "https://go.dev/cl/752182"
},
{
"category": "external",
"summary": "https://go.dev/issue/77952",
"url": "https://go.dev/issue/77952"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4599",
"url": "https://pkg.go.dev/vuln/GO-2026-4599"
}
],
"release_date": "2026-03-06T21:28:13.748000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-28T07:19:47+00:00",
"details": "It is recommended that existing users of Red Hat OpenShift Builds 1.7.1 upgrades to to 1.7.2",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11331"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"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",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64"
],
"known_not_affected": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-28T07:19:47+00:00",
"details": "It is recommended that existing users of Red Hat OpenShift Builds 1.7.1 upgrades to to 1.7.2",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11331"
},
{
"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 Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-33211",
"cwe": {
"id": "CWE-22",
"name": "Improper Limitation of a Pathname to a Restricted Directory (\u0027Path Traversal\u0027)"
},
"discovery_date": "2026-03-24T00:02:20.093480+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450554"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Tekton Pipelines, specifically in the Tekton Pipelines git resolver. A tenant with permissions to create ResolutionRequests can exploit a path traversal vulnerability via the `pathInRepo` parameter. This allows the tenant to read arbitrary files from the resolver pod\u0027s filesystem, leading to information disclosure, including sensitive ServiceAccount tokens. The contents of these files are returned in a base64-encoded format.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Tekton Pipelines: github.com/tektoncd/pipeline: Tekton Pipelines: Information disclosure via path traversal in git resolver",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to have the permission to create ResolutionRequests (e.g., by creating TaskRuns or PipelineRuns that use the git resolver) within at least one specific namespace, limiting the exposure of this issue to authenticated users. Also, an attacker can read any file readable by the resolver pod process, including cluster secrets, allowing an escalation of privileges from namespace-scoped access to cluster-wide access. Due to these reasons, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x"
],
"known_not_affected": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
},
"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-28T07:19:47+00:00",
"details": "It is recommended that existing users of Red Hat OpenShift Builds 1.7.1 upgrades to to 1.7.2",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11331"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, restrict the creation of ResolutionRequests to trusted users and service accounts. Implement strict Role-Based Access Control (RBAC) policies to limit which tenants can create TaskRuns or PipelineRuns that utilize the Tekton Pipelines git resolver. This reduces the exposure by preventing unauthorized access to the resolver pod\u0027s filesystem.",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.6,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"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-33810",
"cwe": {
"id": "CWE-1289",
"name": "Improper Validation of Unsafe Equivalence in Input"
},
"discovery_date": "2026-04-08T02:01:09.100830+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456335"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the `crypto/x509` package within Go (golang). When verifying a certificate chain, excluded DNS (Domain Name System) constraints are not correctly applied to wildcard DNS Subject Alternative Names (SANs) if the case of the SAN differs from the constraint. This oversight could allow an attacker to bypass certificate validation, potentially leading to the acceptance of a malicious certificate that should have been rejected. This issue specifically impacts the validation of trusted certificate chains.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33810"
},
{
"category": "external",
"summary": "RHBZ#2456335",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456335"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33810",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33810"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33810"
},
{
"category": "external",
"summary": "https://go.dev/cl/763763",
"url": "https://go.dev/cl/763763"
},
{
"category": "external",
"summary": "https://go.dev/issue/78332",
"url": "https://go.dev/issue/78332"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4866",
"url": "https://pkg.go.dev/vuln/GO-2026-4866"
}
],
"release_date": "2026-04-08T01:06:56.546000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-28T07:19:47+00:00",
"details": "It is recommended that existing users of Red Hat OpenShift Builds 1.7.1 upgrades to to 1.7.2",
"product_ids": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11331"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5008dcb0428a0837b9abd827963e7008c8e16af8cfcbd432421286fca63fe714_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:5856cba3fe26ab7f756ba93e06caa6e522336ff36ff4c515132a8d35c85a2f64_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:6ddf185f2714d45fab92c831bf32673da55c7a43dbcf1bd22090b203791e03b2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:eb32b129ea6a10b4aada4313ff11b04c33b99877eea9a5e567245d361d69f140_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:165f6085028f3859f6ede9176d413274ee1a457b72cd9c437795146c20b0722c_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:7a39f26f51bcbb4ef395208db01e2b0ee8b1fe9b15b3701c9c35d8f636f790d9_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:a4d609ff22b610b625a74fffd22883d5debe93c2e0c6ae2bcbbfd8f5f6b2cf12_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:ec02f5f031fefd5a610b69a81be5350f96e54511e2d2c619e8b9fe8f193297b6_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:0070df2a8c7882ae021000c498ead96b19f1bd6819e46657d5898cb71e6ec506_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:4b578a8ef1579d7168b7f0a1b7cebe66213003f8225a86cfdd4c9f24a5e2d871_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:8d6371a5fe374e3bc5c19a930ea712d266fab13a722768204b128bc71e928c97_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:985b19d79b3e54fc8b99b9b0239b74dcf6d0102d3ff0cd5363ae4627069d2ee1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:2a0a6ea6465a6d165f072ef782a1825cc16ecfb2f8c58d5ec58c1d40d02e5208_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:679b470190ff7a7fc04e283884be4f24d1b0c475d0730fb718f2f45c60551b61_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9734d0dc0367884e128837b7d02038a3b4136c4865ed3dc90902801393e178b4_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:f5f35702e424cd4e9b768c59d44928844b2d09fbb98d368ae7b54b7ec0771d13_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-operator-bundle@sha256:093834bac2e2f7f01968ef542b9bcbf5fbe530c9f0dd86521825797abb4a33a2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:190edd3effb60c56c885fc964d3eb48076293e1e43d745c4615ed00ef7daa145_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:382be8775c61942123adac2acec9f48085ebf7fd2b286c20e36a33ea6462baa7_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5e83175abaef1e3046bac94621a86e036317833c740cdd6d235f1133a1388dd3_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:7173a298b07cbde3cd9ff12ca25f26ccf79b9ff8cfcb35a001c9f8c0b0291436_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:16cf5e33f297c027686d3ba9c6cbb01dba7a39299e2765fe4eaacc892b32f0d1_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:4715242f98234d2018f8317d9a57f63ff23b4d63be96491d55af2a2ef4572261_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:678c8d38900d994c4aa2e23669b7901747028690a4c5e4ba9aced4cbfe22b248_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-rhel9@sha256:b39a2930e310d432a840798f03f7e55b8da42ff16ccda31790f85558d2be2537_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:1d01e27a3cdea6c99a985b877e29629d1c1fb00203f4a90c45db6df7a602e2cc_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:88b38ad10068e0574d2e5934849b98429c69305633b42aa4d19822ede2a6e10d_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:b020334c46f2d7276ba0c3aa8be7951254b197b2da310f0c22d2e16681a6a265_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-shared-resource-webhook-rhel9@sha256:f2c222424cd66659ebea6787b6934c2d01d9eeb4f7db03ebfa16ab7b65aeb5b2_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:153f9e059139e6dbaeb2e5166d21bfeec59a59aa5cd8045e11dbfa091479b4bb_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b2173caa314ae26d2a300f61cfa94031c34fe7676fd007418849212082db3636_s390x",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:cd9ada6b38c080eec45e1d053ec305dde2d574899019ffb01a28dbe1dd582912_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:f17eb032f7250aa4a3bb99e2754fa4cb0dbfc9fbbb8c787f70ad30b71b27b5a2_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:1a57b53f8642ccb95884687efc251ad52e8ee3e718b55d0f4d21f800dfd3f5fa_arm64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:6234cfecf4dd75b8c4ff1c527ad4eb306d966cfa0170ecdb8ea4bc69c2cdc495_amd64",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:779e75a94141db7f8223b9861ba2fa3ba8baf6fa470bb0ab109945d75e20121b_ppc64le",
"Red Hat OpenShift Builds 1.7.3:registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:e593bebc4e753ac3c4cdd1be05711452dbda6e3b015b37926fa804851bdad6a8_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Go crypto/x509: Certificate validation bypass due to incorrect DNS constraint application"
}
]
}
RHSA-2026:11408
Vulnerability from csaf_redhat - Published: 2026-04-28 19:03 - Updated: 2026-06-28 22:55A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64 | — |
Workaround
|
A flaw was found in the archive/zip package in the Go standard library. A super-linear file name indexing algorithm is used in the first time a file in an archive is opened. A crafted zip archive containing a specific arrangement of file names can cause an excessive CPU and memory consumption. A Go application processing a malicious archive can become unresponsive or crash, resulting in a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64 | — |
Workaround
|
A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64 | — |
A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_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": "VolSync v0.14 General Availability release images, which provide enhancements, security fixes, and updated container images.\n\nRed Hat Product Security has rated this update as having a security impact\nof Important. A Common Vulnerability Scoring System (CVSS) base score,\nwhich gives a detailed severity rating, is available for each vulnerability\nfrom the CVE links in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "VolSync v0.14 is a Kubernetes operator that enables asynchronous\nreplication of persistent volumes within a cluster, or across clusters. After\ndeploying the VolSync operator, it can create and maintain copies of your\npersistent data.\n\nFor more information about VolSync, see:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/business_continuity/business-cont-overview#volsync\n\nor the VolSync open source community website at: https://volsync.readthedocs.io/en/stable/.",
"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:11408",
"url": "https://access.redhat.com/errata/RHSA-2026:11408"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61726",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61728",
"url": "https://access.redhat.com/security/cve/CVE-2025-61728"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61729",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32282",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/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_11408.json"
}
],
"title": "Red Hat Security Advisory: VolSync v0.14 security fixes and container updates",
"tracking": {
"current_release_date": "2026-06-28T22:55:01+00:00",
"generator": {
"date": "2026-06-28T22:55:01+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:11408",
"initial_release_date": "2026-04-28T19:03:51+00:00",
"revision_history": [
{
"date": "2026-04-28T19:03:51+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-28T19:03:54+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:01+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product": {
"name": "Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:acm:2.15::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Management for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"product_id": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"product_identification_helper": {
"purl": "pkg:oci/volsync-rhel9@sha256%3Adcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777380373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"product_id": "registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/volsync-operator-bundle@sha256%3A3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777382747"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"product_id": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/volsync-rhel9@sha256%3A15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777380373"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"product_id": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"product_identification_helper": {
"purl": "pkg:oci/volsync-rhel9@sha256%3Ab92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777380373"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64",
"product_id": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/volsync-rhel9@sha256%3Ae251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777380373"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.15"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-61726",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:42.791305+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434432"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the net/url package in the Go standard library. The package does not enforce a limit on the number of unique query parameters it parses. A Go application using the net/http.Request.ParseForm method will try to process all parameters provided in the request. A specially crafted HTTP request containing a massive number of query parameters will cause the application to consume an excessive amount of memory, eventually causing the application to crash or become unresponsive, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: net/url: Memory exhaustion in query parameter parsing in net/url",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker must be able to send a specially crafted HTTP request to an application parsing URL-encoded forms with net/url, specifically a request containing a large number of unique query parameters. The request will cause the application to consume an excessive amount of memory and eventually result in a denial of service, with no impact to confidentiality or integrity. Due to this reason, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61726"
},
{
"category": "external",
"summary": "RHBZ#2434432",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434432"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61726",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61726"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61726"
},
{
"category": "external",
"summary": "https://go.dev/cl/736712",
"url": "https://go.dev/cl/736712"
},
{
"category": "external",
"summary": "https://go.dev/issue/77101",
"url": "https://go.dev/issue/77101"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4341",
"url": "https://pkg.go.dev/vuln/GO-2026-4341"
}
],
"release_date": "2026-01-28T19:30:31.215000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-28T19:03:51+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/business_continuity/business-cont-overview#volsync",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11408"
},
{
"category": "workaround",
"details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "golang: net/url: Memory exhaustion in query parameter parsing in net/url"
},
{
"cve": "CVE-2025-61728",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-01-28T20:01:39.965024+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434431"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the archive/zip package in the Go standard library. A super-linear file name indexing algorithm is used in the first time a file in an archive is opened. A crafted zip archive containing a specific arrangement of file names can cause an excessive CPU and memory consumption. A Go application processing a malicious archive can become unresponsive or crash, resulting in a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to be able to process a malicious zip archive with an application using the archive/zip package. Additionally, this vulnerability can cause a Go application to consume an excessive amount of CPU and memory, eventually resulting in a denial of service with no other security impact. Due to these reasons, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61728"
},
{
"category": "external",
"summary": "RHBZ#2434431",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434431"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61728",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61728"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61728",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61728"
},
{
"category": "external",
"summary": "https://go.dev/cl/736713",
"url": "https://go.dev/cl/736713"
},
{
"category": "external",
"summary": "https://go.dev/issue/77102",
"url": "https://go.dev/issue/77102"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4342",
"url": "https://pkg.go.dev/vuln/GO-2026-4342"
}
],
"release_date": "2026-01-28T19:30:31.354000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-28T19:03:51+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/business_continuity/business-cont-overview#volsync",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11408"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, implement a timeout in your archive/zip processing logic to abort the operation if it exceeds a few seconds, preventing the application from consuming an excessive amount of resources.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: archive/zip: Excessive CPU consumption when building archive index in archive/zip"
},
{
"cve": "CVE-2025-61729",
"cwe": {
"id": "CWE-1050",
"name": "Excessive Platform Resource Consumption within a Loop"
},
"discovery_date": "2025-12-02T20:01:45.330964+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418462"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in golang. A remote attacker could exploit this vulnerability by providing a specially crafted certificate during the error string construction process within the `HostnameError.Error()` function. This flaw, caused by unbounded string concatenation, leads to excessive resource consumption. Successful exploitation can result in a denial of service (DoS) for the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61729"
},
{
"category": "external",
"summary": "RHBZ#2418462",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418462"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61729",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61729"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61729"
},
{
"category": "external",
"summary": "https://go.dev/cl/725920",
"url": "https://go.dev/cl/725920"
},
{
"category": "external",
"summary": "https://go.dev/issue/76445",
"url": "https://go.dev/issue/76445"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4",
"url": "https://groups.google.com/g/golang-announce/c/8FJoBkPddm4"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2025-4155",
"url": "https://pkg.go.dev/vuln/GO-2025-4155"
}
],
"release_date": "2025-12-02T18:54:10.166000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-28T19:03:51+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/business_continuity/business-cont-overview#volsync",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11408"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "crypto/x509: golang: Denial of Service due to excessive resource consumption via crafted certificate"
},
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "RHBZ#2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32282",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://go.dev/cl/763761",
"url": "https://go.dev/cl/763761"
},
{
"category": "external",
"summary": "https://go.dev/issue/78293",
"url": "https://go.dev/issue/78293"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4864",
"url": "https://pkg.go.dev/vuln/GO-2026-4864"
}
],
"release_date": "2026-04-08T01:06:55.953000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-28T19:03:51+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/business_continuity/business-cont-overview#volsync",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11408"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_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-28T19:03:51+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/business_continuity/business-cont-overview#volsync",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11408"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:3053d9922016840bb6e2a14c783b61cd1799e345139b4a799b35c444e4b19ebd_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:15a198e39cc0d139796a6cc9fa3bc0e6607776b0020f044452265e0868e44598_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:b92dc6fa8b2f0bb35daaa710056cf9c001728ad004679a4987e634899c631d65_s390x",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:dcd8cd73020fa1704bf7f5e21db0c15fb6696a555e57c5dd5d7f6fe5c97f6eba_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.15:registry.redhat.io/rhacm2/volsync-rhel9@sha256:e251496656ed10eafdf45be0a0273d849e7df585e83b52624326df77edfa3a5a_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:11803
Vulnerability from csaf_redhat - Published: 2026-04-29 15:35 - Updated: 2026-06-28 22:55A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_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": "VolSync v0.15 General Availability release images, which provide enhancements, security fixes, and updated container images.\n\nRed Hat Product Security has rated this update as having a security impact\nof Important. A Common Vulnerability Scoring System (CVSS) base score,\nwhich gives a detailed severity rating, is available for each vulnerability\nfrom the CVE links in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "VolSync v0.15 is a Kubernetes operator that enables asynchronous\nreplication of persistent volumes within a cluster, or across clusters. After\ndeploying the VolSync operator, it can create and maintain copies of your\npersistent data.\n\nFor more information about VolSync, see:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.16/html/business_continuity/business-cont-overview#volsync\n\nor the VolSync open source community website at: https://volsync.readthedocs.io/en/stable/.",
"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:11803",
"url": "https://access.redhat.com/errata/RHSA-2026:11803"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32282",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/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_11803.json"
}
],
"title": "Red Hat Security Advisory: VolSync v0.15 security fixes and container updates",
"tracking": {
"current_release_date": "2026-06-28T22:55:02+00:00",
"generator": {
"date": "2026-06-28T22:55:02+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:11803",
"initial_release_date": "2026-04-29T15:35:02+00:00",
"revision_history": [
{
"date": "2026-04-29T15:35:02+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-29T15:35:09+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:02+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Advanced Cluster Management for Kubernetes 2.16",
"product": {
"name": "Red Hat Advanced Cluster Management for Kubernetes 2.16",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.16",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:acm:2.16::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Advanced Cluster Management for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"product_id": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/volsync-rhel9@sha256%3A74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777380410"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64",
"product": {
"name": "registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64",
"product_id": "registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64",
"product_identification_helper": {
"purl": "pkg:oci/volsync-operator-bundle@sha256%3A16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36?arch=amd64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777382754"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"product": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"product_id": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/volsync-rhel9@sha256%3A0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e?arch=ppc64le\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777380410"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x",
"product": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x",
"product_id": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x",
"product_identification_helper": {
"purl": "pkg:oci/volsync-rhel9@sha256%3Aed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314?arch=s390x\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777380410"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"product": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"product_id": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/volsync-rhel9@sha256%3A035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb?arch=arm64\u0026repository_url=registry.redhat.io/rhacm2\u0026tag=1777380410"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64"
},
"product_reference": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le"
},
"product_reference": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64"
},
"product_reference": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.16"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16",
"product_id": "Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x"
},
"product_reference": "registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x",
"relates_to_product_reference": "Red Hat Advanced Cluster Management for Kubernetes 2.16"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-32282",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-04-08T02:01:12.683211+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2456336"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the internal/syscall/unix package in the Go standard library. If the target of the `Root.Chmod` function is replaced with a symbolic link during execution, specifically after `Root.Chmod` checks the target but before acting, the `chmod` operation will be performed on the file the symbolic link points to. This issue can bypass directory restrictions and lead to unauthorized permission changes on the filesystem.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs access to the system and the required permissions to create a symbolic link. Additionally, the attacker must swap the target file with a symbolic link in the exact window after the `Root.Chmod` function checks its target but before acting. Due to these conditions, this flaw has been rated with a moderate severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32282"
},
{
"category": "external",
"summary": "RHBZ#2456336",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2456336"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32282",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32282"
},
{
"category": "external",
"summary": "https://go.dev/cl/763761",
"url": "https://go.dev/cl/763761"
},
{
"category": "external",
"summary": "https://go.dev/issue/78293",
"url": "https://go.dev/issue/78293"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU",
"url": "https://groups.google.com/g/golang-announce/c/0uYbvbPZRWU"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4864",
"url": "https://pkg.go.dev/vuln/GO-2026-4864"
}
],
"release_date": "2026-04-08T01:06:55.953000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T15:35:02+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.16/html/business_continuity/business-cont-overview#volsync",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11803"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "golang: internal/syscall/unix: Root.Chmod can follow symlinks out of the root"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x"
],
"known_not_affected": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_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-29T15:35:02+00:00",
"details": "For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation:\n\nhttps://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.16/html/business_continuity/business-cont-overview#volsync",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11803"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-operator-bundle@sha256:16fe25978a2667b08c64fdc291cf49f360f734ec4904888f819cc0a563f39b36_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:035aff4df7d0f68580d1592dc48b44af82df171b12de09b5bb7df9842877edcb_arm64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:0a771130ae9933c3458a1f2630b755d039cabac0bd8ff3613080a17b57bbc62e_ppc64le",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:74d79d9a7f8a625cc84c53329e84b30e8de5ae166614cd9417136f0c3d5664e8_amd64",
"Red Hat Advanced Cluster Management for Kubernetes 2.16:registry.redhat.io/rhacm2/volsync-rhel9@sha256:ed5cef307a8d15acef1805e358ef28d844858f5e87c4ea891675b3d9321a6314_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
}
]
}
RHSA-2026:11856
Vulnerability from csaf_redhat - Published: 2026-04-29 17:11 - Updated: 2026-06-28 22:55No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64 | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64 | — |
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64 | — |
Workaround
|
A flaw was found in pyOpenSSL. The set_cookie_generate_callback callback function can be used to generate DTLS cookies. When the callback returns a cookie string or byte sequence longer than 256 bytes, a buffer overflow can be triggered due to a missing bounds checking before copying the data to a fixed-size buffer provided by the underlying OpenSSL library.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64 | — |
Workaround
|
A flaw was found in SVGO, an SVG (Scalable Vector Graphics) Optimizer. This vulnerability allows a remote attacker to cause a Denial of Service (DoS) by submitting a specially crafted XML file. The application's failure to properly guard against XML entity expansion or recursion can lead to the Node.js process consuming excessive memory and crashing.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64 | — |
Workaround
|
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64 | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64 | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64 | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat Quay 3.12.17 is now available with bug fixes.",
"title": "Topic"
},
{
"category": "general",
"text": "Quay 3.12.17",
"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:11856",
"url": "https://access.redhat.com/errata/RHSA-2026:11856"
},
{
"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-27459",
"url": "https://access.redhat.com/security/cve/CVE-2026-27459"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29074",
"url": "https://access.redhat.com/security/cve/CVE-2026-29074"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32286",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-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_11856.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Quay 3.12.17",
"tracking": {
"current_release_date": "2026-06-28T22:55:02+00:00",
"generator": {
"date": "2026-06-28T22:55:02+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:11856",
"initial_release_date": "2026-04-29T17:11:19+00:00",
"revision_history": [
{
"date": "2026-04-29T17:11:19+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-29T17:11:23+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:02+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Quay 3.12",
"product": {
"name": "Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:quay:3.12::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Quay"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-bundle@sha256%3A7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776698050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-bundle@sha256%3Acba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776698909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3Aff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3Adbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776698050"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3Ac5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776798011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-bundle@sha256%3Ae2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776888642"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3Aa696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776887968"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776752646"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3Aaf6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3Ab615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776798011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3Ad682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776887968"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3Ab64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3?arch=arm64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776752646"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776798011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776887968"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776752646"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3Aee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697573"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776798011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776697568"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776887968"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3Ae7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776752646"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64 as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"relates_to_product_reference": "Red Hat Quay 3.12"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x as a component of Red Hat Quay 3.12",
"product_id": "Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x",
"relates_to_product_reference": "Red Hat Quay 3.12"
}
]
},
"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 Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
]
}
],
"notes": [
{
"category": "description",
"text": "No description is available for this CVE.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "This CVE has been marked as Rejected by the assigning CNA.",
"title": "Statement"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_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-29T17:11:19+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11856"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_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-29T17:11:19+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11856"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27459",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-03-18T00:01:41.404915+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448503"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in pyOpenSSL. The set_cookie_generate_callback callback function can be used to generate DTLS cookies. When the callback returns a cookie string or byte sequence longer than 256 bytes, a buffer overflow can be triggered due to a missing bounds checking before copying the data to a fixed-size buffer provided by the underlying OpenSSL library.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "pyOpenSSL: DTLS cookie callback buffer overflow",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw is only exploitable when an application using the pyOpenSSL library provides a custom callback to the set_cookie_generate_callback function. For the buffer overflow to occur, the callback function must return a cookie string or byte sequence longer than 256 bytes, limiting the exposure of this issue. Due to these reasons, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27459"
},
{
"category": "external",
"summary": "RHBZ#2448503",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448503"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27459",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27459"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27459",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27459"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/blob/358cbf29c4e364c59930e53a270116249581eaa3/CHANGELOG.rst",
"url": "https://github.com/pyca/pyopenssl/blob/358cbf29c4e364c59930e53a270116249581eaa3/CHANGELOG.rst"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/commit/57f09bb4bb051d3bc2a1abd36e9525313d5cd408",
"url": "https://github.com/pyca/pyopenssl/commit/57f09bb4bb051d3bc2a1abd36e9525313d5cd408"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/security/advisories/GHSA-5pwr-322w-8jr4",
"url": "https://github.com/pyca/pyopenssl/security/advisories/GHSA-5pwr-322w-8jr4"
}
],
"release_date": "2026-03-17T23:34:28.483000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T17:11:19+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11856"
},
{
"category": "workaround",
"details": "To mitigate this flaw, ensure the callback provided to the set_cookie_generate_callback function strictly limits the returned cookie string or byte sequence to under 256 bytes.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "pyOpenSSL: DTLS cookie callback buffer overflow"
},
{
"cve": "CVE-2026-29074",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-03-06T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445132"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in SVGO, an SVG (Scalable Vector Graphics) Optimizer. This vulnerability allows a remote attacker to cause a Denial of Service (DoS) by submitting a specially crafted XML file. The application\u0027s failure to properly guard against XML entity expansion or recursion can lead to the Node.js process consuming excessive memory and crashing.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "svgo: SVGO: Denial of Service via XML entity expansion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29074"
},
{
"category": "external",
"summary": "RHBZ#2445132",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445132"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29074",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29074"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29074",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29074"
},
{
"category": "external",
"summary": "https://github.com/svg/svgo/security/advisories/GHSA-xpqw-6gx7-v673",
"url": "https://github.com/svg/svgo/security/advisories/GHSA-xpqw-6gx7-v673"
}
],
"release_date": "2026-03-06T07:23:05.716000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T17:11:19+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11856"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "svgo: SVGO: Denial of Service via XML entity expansion"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T17:11:19+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11856"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_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-29T17:11:19+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11856"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_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-29T17:11:19+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11856"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:53d2838548e77931e94f9bcd85e941fb694b28a3585d280ddcb761344d2845e6_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:65503333e10391dca7854bd07dc161288cc00b1a722533e42af1e2c4c3c0afeb_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:8185411ec370b562124ed94598c1dc5128f7b4eba2612d59a0b0b5c767a2a697_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/clair-rhel8@sha256:d682a5dd2a55034acfd3fe24b70526d1f514cf7e058aa51505d72537045cf3be_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:cba47e962ec1b6b6f68cea1b231e4a69f8e8ec25067b6e603ebeb268c9fc1ee0_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2195b3586d18555507672ce46cbe7ca44fc89271217f4d10c4a0f709d63a2ad9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:4454746edc32128a37ab4be8b97c99b87fd8d85fc2199a2d80834ff72f9790d5_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:b615e4d4f9d80660cd340c20df280f0387049f5940f7bb2812d2e3bf325a12f9_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:ff9ba83cb0a4505d9bfbd5b0826400b0d3685572e8f599a2813f1462c8a2c310_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:dbdd7ba0477474b50810b0950c8e50171b2327f81ad14ff02ba34cb69885cd45_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:523a51c7c519af386cdaebb7e67971f0a05a7b31fb6683be852a291aada8201a_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:7ce1aebe1c0916ab52b66902127625b13c19231ffd67b24c8606a0131f19d4f9_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:8e02861c489702fb5b0ecb60c8b4e9bb6a14a5f026ceee9fee482891cf7dd61e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-builder-rhel8@sha256:c5fdf182c5b34b44e21971af93272ac07a2521c3d496b6d92c0a3a7afe3bd362_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:7551505ec9af37fd96ad9a226a475d3d7169eb7d861c4f45cd490ff1f0fae1d3_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:64b287be516147f19f83fe4ac93471de19a8bcc1e3489d7298b734ec26d45aab_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:943fe18122c39717e8874df366a9d8cb2e98572e62af6773445b6328b38b9b0e_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:af6903e508dc41730b05d855d363f53c0e8efcb327429b59cbca959a9cc6aaf1_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:ee5eec8ed546799aa60d3181f45810632ce280a310a0f75fa847d8cfa0a7690d_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-bundle@sha256:e2e10580ca1783ac80ea08851c21f4accaa284951d7a909a59d3484ec3077163_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:0578be0cbc9bbbdd5bf86e5bbc15d1741f654af7149efdf184d300f6a3c0b86a_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:18da4574e93bb4cdf09757ad095257912cfdf8506546d83b2f705fbb9d067282_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:2a5eb683e47b2f8e1d02546ff6a640c984e71a9e657112243da082aea47d7af8_s390x",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-operator-rhel8@sha256:a696f5af8140d39bf5528d1efc1affab93050fb764c0e6d09c61f819375be139_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:3c87ef209deb488a3c37626273123280364972c155ae53d986fbc784bf219892_amd64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:6af0be7e815a0c1db832025550381df8869a824393be8025d4cceb7e610619e9_ppc64le",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:b64f0e80cebf4fe945fa945a9df2796c463cb3026a7cfd32e9ab2fc98528b7d3_arm64",
"Red Hat Quay 3.12:registry.redhat.io/quay/quay-rhel8@sha256:e7316f47c02a052e731b15ee00e9bb0ed4a9a1dd19f5b2423150e83ebcb010dd_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:11916
Vulnerability from csaf_redhat - Published: 2026-04-29 21:18 - Updated: 2026-06-28 22:55No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x | — |
The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x | — |
Workaround
|
A flaw was found in pyOpenSSL. The set_cookie_generate_callback callback function can be used to generate DTLS cookies. When the callback returns a cookie string or byte sequence longer than 256 bytes, a buffer overflow can be triggered due to a missing bounds checking before copying the data to a fixed-size buffer provided by the underlying OpenSSL library.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x | — |
Workaround
|
A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x | — |
A flaw was found in SVGO, an SVG (Scalable Vector Graphics) Optimizer. This vulnerability allows a remote attacker to cause a Denial of Service (DoS) by submitting a specially crafted XML file. The application's failure to properly guard against XML entity expansion or recursion can lead to the Node.js process consuming excessive memory and crashing.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x | — |
Workaround
|
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x | — |
Workaround
|
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat Quay 3.10.21 is now available with bug fixes.",
"title": "Topic"
},
{
"category": "general",
"text": "Quay 3.10.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:11916",
"url": "https://access.redhat.com/errata/RHSA-2026:11916"
},
{
"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-27459",
"url": "https://access.redhat.com/security/cve/CVE-2026-27459"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29063",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29074",
"url": "https://access.redhat.com/security/cve/CVE-2026-29074"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32286",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-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_11916.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Quay 3.10.21",
"tracking": {
"current_release_date": "2026-06-28T22:55:03+00:00",
"generator": {
"date": "2026-06-28T22:55:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:11916",
"initial_release_date": "2026-04-29T21:18:39+00:00",
"revision_history": [
{
"date": "2026-04-29T21:18:39+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-29T21:18:58+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:03+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Quay 3.1",
"product": {
"name": "Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:quay:3.10::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Quay"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-bundle@sha256%3Adb1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776785871"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776784458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-bundle@sha256%3Aa85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776785891"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776784548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3A0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776706008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1777302567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776705546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-bundle@sha256%3A77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1777303274"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776908884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3Adcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776736910"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776784458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776784548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1777302567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776705546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776908884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776736910"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3Aa39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776784458"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776784548"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1777302567"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776705546"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3Abf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776908884"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776736910"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.1"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64 as a component of Red Hat Quay 3.1",
"product_id": "Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64",
"relates_to_product_reference": "Red Hat Quay 3.1"
}
]
},
"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 Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
}
],
"notes": [
{
"category": "description",
"text": "No description is available for this CVE.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "This CVE has been marked as Rejected by the assigning CNA.",
"title": "Statement"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4427"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4427",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4427"
}
],
"release_date": "2026-03-18T13:00:31+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T21:18:39+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11916"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T21:18:39+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11916"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_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 Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27459",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-03-18T00:01:41.404915+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448503"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in pyOpenSSL. The set_cookie_generate_callback callback function can be used to generate DTLS cookies. When the callback returns a cookie string or byte sequence longer than 256 bytes, a buffer overflow can be triggered due to a missing bounds checking before copying the data to a fixed-size buffer provided by the underlying OpenSSL library.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "pyOpenSSL: DTLS cookie callback buffer overflow",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw is only exploitable when an application using the pyOpenSSL library provides a custom callback to the set_cookie_generate_callback function. For the buffer overflow to occur, the callback function must return a cookie string or byte sequence longer than 256 bytes, limiting the exposure of this issue. Due to these reasons, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27459"
},
{
"category": "external",
"summary": "RHBZ#2448503",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448503"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27459",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27459"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27459",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27459"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/blob/358cbf29c4e364c59930e53a270116249581eaa3/CHANGELOG.rst",
"url": "https://github.com/pyca/pyopenssl/blob/358cbf29c4e364c59930e53a270116249581eaa3/CHANGELOG.rst"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/commit/57f09bb4bb051d3bc2a1abd36e9525313d5cd408",
"url": "https://github.com/pyca/pyopenssl/commit/57f09bb4bb051d3bc2a1abd36e9525313d5cd408"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/security/advisories/GHSA-5pwr-322w-8jr4",
"url": "https://github.com/pyca/pyopenssl/security/advisories/GHSA-5pwr-322w-8jr4"
}
],
"release_date": "2026-03-17T23:34:28.483000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T21:18:39+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11916"
},
{
"category": "workaround",
"details": "To mitigate this flaw, ensure the callback provided to the set_cookie_generate_callback function strictly limits the returned cookie string or byte sequence to under 256 bytes.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "pyOpenSSL: DTLS cookie callback buffer overflow"
},
{
"cve": "CVE-2026-29063",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-03-06T19:00:57.982727+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445291"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this vulnerability requires that an attacker is able to provide arbitrary data to clients of this library in a way that calls the affected functions with data the attacker controls. In most deployments, the ability to provide data in this fashion requires that an attacker has some degree of privileges to access the affected applications.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "RHBZ#2445291",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445291"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29063",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29063"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw",
"url": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw"
}
],
"release_date": "2026-03-06T18:25:22.438000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T21:18:39+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11916"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"cve": "CVE-2026-29074",
"cwe": {
"id": "CWE-776",
"name": "Improper Restriction of Recursive Entity References in DTDs (\u0027XML Entity Expansion\u0027)"
},
"discovery_date": "2026-03-06T00:00:00+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445132"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in SVGO, an SVG (Scalable Vector Graphics) Optimizer. This vulnerability allows a remote attacker to cause a Denial of Service (DoS) by submitting a specially crafted XML file. The application\u0027s failure to properly guard against XML entity expansion or recursion can lead to the Node.js process consuming excessive memory and crashing.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "svgo: SVGO: Denial of Service via XML entity expansion",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29074"
},
{
"category": "external",
"summary": "RHBZ#2445132",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445132"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29074",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29074"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29074",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29074"
},
{
"category": "external",
"summary": "https://github.com/svg/svgo/security/advisories/GHSA-xpqw-6gx7-v673",
"url": "https://github.com/svg/svgo/security/advisories/GHSA-xpqw-6gx7-v673"
}
],
"release_date": "2026-03-06T07:23:05.716000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T21:18:39+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11916"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_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 Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "svgo: SVGO: Denial of Service via XML entity expansion"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T21:18:39+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11916"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_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 Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T21:18:39+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11916"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_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 Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_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 Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"known_not_affected": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-29T21:18:39+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11916"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_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 Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:0a65832e2056a4f317afc7aaffa870418a67a5c8216787469d5845e7b9e1da56_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:62c33fd8160ec9f5ca795496c302f9ab708167a784f56422705e42a73eaa69fc_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/clair-rhel8@sha256:77f795c922f07ccdb237e98bc0184c2b63e640bb9fb71c183b00ece2d4d423f7_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:a85190ee795f8fa1e9324af5e0af259ab69fa3a05272a5bb5f4076d372fd5fd1_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:2aa45808282b59093c37870eee91e90f3ea0f5505a2c3081044426afc1b24c43_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:57a8db4bfcc0f507fc46e9e0f379bb85558431940861d5ccf7d67c28b4ce70d6_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:628fb2f45f9ae0a1f7ade369ddb11aaf19e849914df3e1602a72bbd747c39403_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:0349e3a25a20874671f34ded49ea0a692a4ccff726ae9a7c212134edd5684aa6_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:3ef001da349fb2880c5b4c7b2b480d84497d2d7b06d5f88b434a5867b15831ea_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:762a843c527f3eae162e4bedee20f88b2df2919499bc07ee156ed6e575673a2b_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-builder-rhel8@sha256:9d564610e1019680260e701955356a2fbd14de32a46506128208c1ebc6771e0e_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:db1bd588d96d3eff25fce96b0e6d78d042b6041b0bb31a64f4683df65b3af5e3_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:5845f4f7c9d013682cf2605a766aeb698e41934f85e3cf4f40a39f95036d2778_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:7e32adf6e8872a6b867d64020b03c1ed4ecbb4079539c3f66e85a595704b008d_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a39cdaf818b6cc9fcb1c780a82c39b1f8d7f00dcb5f4ecdf5795cd7452f56203_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-bundle@sha256:77dbe735cb007c4cb31d0d01e26aa46f7014ea4089b72630d206526605b78e52_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:489446f0c5a57d9d6bcdb7b0ccba2db6c5f961693bc0c95cda02a6ee52a718ae_amd64",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:7c05bf2bab975c345fbb1f54c74ce00b512a7780262087ffeb5e18e39d357e2e_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-operator-rhel8@sha256:bf747665d8f980936633273351381207f0db7e5a920f6c1745dd1282f9a7a7a7_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:1f42a9088fd931804a16d6170c2d65a1a49b2433e906d3e3ac59f5169793ae8d_s390x",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:82890320e84c3be368d5f7e4b76fb99d6a20340cd5c3b2809e3e23cabc76bc7b_ppc64le",
"Red Hat Quay 3.1:registry.redhat.io/quay/quay-rhel8@sha256:dcf424eb353016ba6d2751052099542b330f99ea8ee0540431e50a8df5628263_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:11996
Vulnerability from csaf_redhat - Published: 2026-04-30 01:20 - Updated: 2026-06-28 22:55No description is available for this CVE.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64 | — | ||
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le | — |
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 Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le | — |
Workaround
|
A flaw was found in pyOpenSSL. The set_cookie_generate_callback callback function can be used to generate DTLS cookies. When the callback returns a cookie string or byte sequence longer than 256 bytes, a buffer overflow can be triggered due to a missing bounds checking before copying the data to a fixed-size buffer provided by the underlying OpenSSL library.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le | — |
Workaround
|
A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a "slice bounds out of range panic", resulting in a Denial of Service (DoS) for the affected application.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_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 Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_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 Quay 3.9.21 is now available with bug fixes.",
"title": "Topic"
},
{
"category": "general",
"text": "Quay 3.9.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:11996",
"url": "https://access.redhat.com/errata/RHSA-2026:11996"
},
{
"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-27459",
"url": "https://access.redhat.com/security/cve/CVE-2026-27459"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-32286",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-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_11996.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Quay 3.9.21",
"tracking": {
"current_release_date": "2026-06-28T22:55:03+00:00",
"generator": {
"date": "2026-06-28T22:55:03+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:11996",
"initial_release_date": "2026-04-30T01:20:06+00:00",
"revision_history": [
{
"date": "2026-04-30T01:20:06+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-30T01:20:15+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:03+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Quay 3.9",
"product": {
"name": "Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:quay:3.9::el8"
}
}
}
],
"category": "product_family",
"name": "Red Hat Quay"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-bundle@sha256%3A9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776963375"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3A6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776962931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-bundle@sha256%3Ad201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776956601"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776956008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-qemu-rhcos-rhel8@sha256%3A8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776705943"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1777327525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3A9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776705534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-bundle@sha256%3A637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1777328140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776908959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5?arch=amd64\u0026repository_url=registry.redhat.io/quay\u0026tag=1776782369"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3Aa0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776962931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776956008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3A84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1777327525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3Ab8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776705534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776908959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253?arch=ppc64le\u0026repository_url=registry.redhat.io/quay\u0026tag=1776782369"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"product_id": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-container-security-operator-rhel8@sha256%3Ad18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776962931"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"product_id": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-bridge-operator-rhel8@sha256%3A6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776956008"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"product_id": "registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-builder-rhel8@sha256%3Ac2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1777327525"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"product": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"product_id": "registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/clair-rhel8@sha256%3Abad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776705534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"product_id": "registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-operator-rhel8@sha256%3A048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776908959"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x",
"product": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x",
"product_id": "registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x",
"product_identification_helper": {
"purl": "pkg:oci/quay-rhel8@sha256%3A9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814?arch=s390x\u0026repository_url=registry.redhat.io/quay\u0026tag=1776782369"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64 as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x"
},
"product_reference": "registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64 as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64 as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64 as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64 as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64 as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64 as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64 as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64 as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64 as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"relates_to_product_reference": "Red Hat Quay 3.9"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x as a component of Red Hat Quay 3.9",
"product_id": "Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
},
"product_reference": "registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x",
"relates_to_product_reference": "Red Hat Quay 3.9"
}
]
},
"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 Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
]
}
],
"notes": [
{
"category": "description",
"text": "No description is available for this CVE.",
"title": "Vulnerability description"
},
{
"category": "other",
"text": "This CVE has been marked as Rejected by the assigning CNA.",
"title": "Statement"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
]
},
"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-30T01:20:06+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11996"
}
],
"title": "github.com/jackc/pgproto3: pgproto3: Denial of Service via negative field length in DataRow message"
},
{
"cve": "CVE-2026-25679",
"cwe": {
"id": "CWE-1286",
"name": "Improper Validation of Syntactic Correctness of Input"
},
"discovery_date": "2026-03-06T22:02:11.567841+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445356"
}
],
"notes": [
{
"category": "description",
"text": "The Go standard library function net/url.Parse insufficiently validated the host/authority component and accepted some invalid URLs by effectively treating garbage before an IP-literal as ignorable. The function should have rejected this as invalid.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "net/url: Incorrect parsing of IPv6 host literals in net/url",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25679"
},
{
"category": "external",
"summary": "RHBZ#2445356",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445356"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25679",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25679"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25679"
},
{
"category": "external",
"summary": "https://go.dev/cl/752180",
"url": "https://go.dev/cl/752180"
},
{
"category": "external",
"summary": "https://go.dev/issue/77578",
"url": "https://go.dev/issue/77578"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk",
"url": "https://groups.google.com/g/golang-announce/c/EdhZqrQ98hk"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4601",
"url": "https://pkg.go.dev/vuln/GO-2026-4601"
}
],
"release_date": "2026-03-06T21:28:14.211000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T01:20:06+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11996"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "net/url: Incorrect parsing of IPv6 host literals in net/url"
},
{
"cve": "CVE-2026-27459",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-03-18T00:01:41.404915+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448503"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in pyOpenSSL. The set_cookie_generate_callback callback function can be used to generate DTLS cookies. When the callback returns a cookie string or byte sequence longer than 256 bytes, a buffer overflow can be triggered due to a missing bounds checking before copying the data to a fixed-size buffer provided by the underlying OpenSSL library.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "pyOpenSSL: DTLS cookie callback buffer overflow",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw is only exploitable when an application using the pyOpenSSL library provides a custom callback to the set_cookie_generate_callback function. For the buffer overflow to occur, the callback function must return a cookie string or byte sequence longer than 256 bytes, limiting the exposure of this issue. Due to these reasons, this vulnerability has been rated with an important severity.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27459"
},
{
"category": "external",
"summary": "RHBZ#2448503",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448503"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27459",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27459"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27459",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27459"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/blob/358cbf29c4e364c59930e53a270116249581eaa3/CHANGELOG.rst",
"url": "https://github.com/pyca/pyopenssl/blob/358cbf29c4e364c59930e53a270116249581eaa3/CHANGELOG.rst"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/commit/57f09bb4bb051d3bc2a1abd36e9525313d5cd408",
"url": "https://github.com/pyca/pyopenssl/commit/57f09bb4bb051d3bc2a1abd36e9525313d5cd408"
},
{
"category": "external",
"summary": "https://github.com/pyca/pyopenssl/security/advisories/GHSA-5pwr-322w-8jr4",
"url": "https://github.com/pyca/pyopenssl/security/advisories/GHSA-5pwr-322w-8jr4"
}
],
"release_date": "2026-03-17T23:34:28.483000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T01:20:06+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11996"
},
{
"category": "workaround",
"details": "To mitigate this flaw, ensure the callback provided to the set_cookie_generate_callback function strictly limits the returned cookie string or byte sequence to under 256 bytes.",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "pyOpenSSL: DTLS cookie callback buffer overflow"
},
{
"cve": "CVE-2026-32286",
"cwe": {
"id": "CWE-1285",
"name": "Improper Validation of Specified Index, Position, or Offset in Input"
},
"discovery_date": "2026-03-26T20:01:59.226117+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451847"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the DataRow.Decode function within the github.com/jackc/pgproto3/v2 component. A malicious or compromised PostgreSQL server can exploit this by sending a DataRow message containing a negative field length. This improper validation of field lengths leads to a \"slice bounds out of range panic\", resulting in a Denial of Service (DoS) for the affected application.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The PostgreSQL server multicluster-globalhub-manager connects to is either provisioned by the operator itself or specified by the admin managing the deployment. To successfully exploit the vulnerability in this context the attacker would need to compromise the operator-deployed PostgreSQL server to force a crafted malicious DataRow message or they would need to have the privileges required to modify the operator-provisioned deployment or configure globalhub-manager to use a compromised/malicious \u201cBYO Postgres\u201d server.\n\nThe first scenario (compromising a legitimate PostgreSQL server) would change Attack Complexity from Low to High resulting in an adjusted CVSS v3.1 score of 5.9 (Moderate)\nThe other scenarios (manipulating the operator provisioned-deployment or configuring the globalhub-manager to use a malicious server) would maintain AC:L but would require privileged access. This would change Privileges Required from None to High resulting in an adjusted CVSS v3.1 score of 4.9 (Moderate)\n\nBased on the above the Impact Rating for multicluster-globalhub-manager-rhel9 is Moderate.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-32286"
},
{
"category": "external",
"summary": "RHBZ#2451847",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451847"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-32286",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-32286"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-32286"
},
{
"category": "external",
"summary": "https://github.com/golang/vulndb/issues/4518",
"url": "https://github.com/golang/vulndb/issues/4518"
},
{
"category": "external",
"summary": "https://github.com/jackc/pgx/issues/2507",
"url": "https://github.com/jackc/pgx/issues/2507"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4518",
"url": "https://pkg.go.dev/vuln/GO-2026-4518"
}
],
"release_date": "2026-03-26T19:40:51.974000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T01:20:06+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11996"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/jackc/pgproto3/v2: github.com/jackc/pgproto3/v2: Denial of Service via malicious PostgreSQL server"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_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 Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_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-30T01:20:06+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11996"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"known_not_affected": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le"
]
},
"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-30T01:20:06+00:00",
"details": "Before applying this update, make sure all previously released errata relevant\nto your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:11996"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:9830eae6b8589e5a4a2e50d201a33f6e9b64ac3b04d7d045d7fd812609fde97a_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:b8f34f08a7a695f6ccf9b88e6c2ce1f1cae76f98d9005588424b0ef8a58f4549_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/clair-rhel8@sha256:bad2d6be0381249da08576fc6e733dd51cb30a0997b17b512c19a39b0e30df08_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-bundle@sha256:d201aa07519a56ee384d8ce004ff97ff4dcade74fed273dd5e731a0ce249c021_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:6a8c24949c45070e83a5d492e7235969b2a241a37649baea8d8af48d8444f0db_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:787fc4e689380b857b2a4e62d2950952f97117b65cd84d033f2e8e8e9b28ef19_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-bridge-operator-rhel8@sha256:78aeb71e263279f23deaacb546676aa3739365e6581b3a2d8f1846339ec68f6f_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-qemu-rhcos-rhel8@sha256:8b22279c558993df180f6dce49f37a429804031963185415d70eafe4af1d5875_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:1b9ba50e0ed691c3f38bbfa1c979ad91ffbc618fea4ee91748412d941c53a5da_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:84a239c3762ffa42bde673f5e6715acabcafa67122ad8684b9c6672fc1300cea_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-builder-rhel8@sha256:c2d65b2417e8c05886b3cb50c7696ae83e04418aebc4dc6f6c96ecebe39991ac_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-bundle@sha256:9b37a43bac0c38e9b7debf427890b9b664d93b2ccd8c4298e860b7ee89ee3c43_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:6e0d179df39acec2ac05188366be788a84d35613145c24054a90656712108fe5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:a0d02b6a2c597aa278b5b512185ffc0dde7ea1769e1178907cd0dbe5b739309b_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-container-security-operator-rhel8@sha256:d18d9c62d72faf3bf5388fa994dfe715a5f46d3a7ea5042952de7f1a750f297e_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-bundle@sha256:637054b16092a2f972f7da7c1d47c00f5f2ca670b464374d68cbeabd25db3889_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:048a42a26c19cbc973e36284a7a80018af580c97d7046bfc513e7cdfae45292f_s390x",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:132c4a7071f70729f971e7c258a60c8b2c6d6427adae3014acdb066fb3415cbb_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-operator-rhel8@sha256:3ae36f520f4560f23b7b4ecbe24fd9bfb6dc3199aaa0bed38dec7c381e5b4067_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:2c3c6f149c673cfd68cb5cc62f75bb75480a8d4f4470a7de93191bca1cc0f253_ppc64le",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:593f1bf28190a411fde00fc5bedf5ca4059b0213b7c3e6455c205aa18ad7d7d5_amd64",
"Red Hat Quay 3.9:registry.redhat.io/quay/quay-rhel8@sha256:9ad34f2c10bd76352bd771579118ffdcc2a2138a0d1aecae4867b5772cd56814_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:12116
Vulnerability from csaf_redhat - Published: 2026-04-30 06:52 - Updated: 2026-06-28 22:55A vulnerability in the assisted-service REST API, an optional Assisted Installer (assisted-service) component in the Multicluster Engine (MCE), allows an authenticated user with minimal namespace-scoped privileges to obtain administrative credentials for arbitrary clusters provisioned through the hub. The credentials download endpoint (GET /v2/clusters/{cluster_id}/credentials, which returns the kubeadmin password) and the kubeconfig download endpoint are operational in AUTH_TYPE=local mode, the only authentication mode available in on-premises ACM/MCE hub deployments. The local authenticator unconditionally grants full administrative access to any request bearing a valid JWT, with no per-endpoint restrictions. A valid local JWT is embedded as a plaintext query parameter in InfraEnvStatus.ISODownloadURL and is readable by any user who has get rights on an InfraEnv object in their own namespace. The affected components ship as part of Multicluster Engine (MCE). The Red Hat Advanced Cluster Management (ACM) deployments that include MCE are equally affected. This issue does not affect the hosted SaaS offering (console.redhat.com), which uses a different authentication mode. Successful exploitation gives the attacker the kubeadmin password and kubeconfig for any OpenShift cluster provisioned through the affected hub, granting unrestricted root-level administrative access to those spoke clusters.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64 | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x | — | ||
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x | — |
Workaround
|
A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64 | — |
Workaround
|
|
| Unresolved product id: multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x | — |
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Assisted installer RHEL 9 components for the multicluster engine for Kubernetes 2.10.2 General Availability release, with updates to container images.",
"title": "Topic"
},
{
"category": "general",
"text": "Assisted Installer RHEL 9 integrates components for the general multicluster engine\nfor Kubernetes 2.10.2 release that simplify the process of deploying OpenShift Container\nPlatform clusters.\n\nThe multicluster engine for Kubernetes provides the foundational components\nthat are necessary for the centralized management of multiple\nKubernetes-based clusters across data centers, public clouds, and private\nclouds. \n\nYou can use the engine to create new Red Hat OpenShift Container Platform\nclusters, or to import existing Kubernetes-based clusters for management.\n\nAfter the clusters are managed, you can use the APIs that\nare provided by the engine to distribute configuration based on placement\npolicy.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:12116",
"url": "https://access.redhat.com/errata/RHSA-2026:12116"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-7163",
"url": "https://access.redhat.com/security/cve/CVE-2026-7163"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34986",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_12116.json"
}
],
"title": "Red Hat Security Advisory: Assisted Installer RHEL 9 components for Multicluster Engine for Kubernetes 2.10.2",
"tracking": {
"current_release_date": "2026-06-28T22:55:04+00:00",
"generator": {
"date": "2026-06-28T22:55:04+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:12116",
"initial_release_date": "2026-04-30T06:52:26+00:00",
"revision_history": [
{
"date": "2026-04-30T06:52:26+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-06T19:56:45+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:04+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "multicluster engine for Kubernetes 2.10",
"product": {
"name": "multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:multicluster_engine:2.10::el9"
}
}
}
],
"category": "product_family",
"name": "multicluster engine for Kubernetes"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-image-service-rhel9@sha256%3A786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1773487346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-rhel9@sha256%3A7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776949906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-agent-rhel9@sha256%3A57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776351169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-controller-rhel9@sha256%3A52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776949909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-service-9-rhel9@sha256%3A73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8?arch=amd64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776983527"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-image-service-rhel9@sha256%3Af11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1773487346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-rhel9@sha256%3A6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776949906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-agent-rhel9@sha256%3A2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776351169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-controller-rhel9@sha256%3A085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776949909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"product_id": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"product_identification_helper": {
"purl": "pkg:oci/assisted-service-9-rhel9@sha256%3A3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17?arch=arm64\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776983527"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/assisted-image-service-rhel9@sha256%3A448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1773487346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-rhel9@sha256%3Ae1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776949906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-agent-rhel9@sha256%3Ab6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776351169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-controller-rhel9@sha256%3Af0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776949909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"product_id": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/assisted-service-9-rhel9@sha256%3A07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3?arch=ppc64le\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776983527"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"product_id": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"product_identification_helper": {
"purl": "pkg:oci/assisted-image-service-rhel9@sha256%3A3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1773487346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-rhel9@sha256%3Aa12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776949906"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-agent-rhel9@sha256%3Abfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776351169"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"product_id": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/assisted-installer-controller-rhel9@sha256%3A12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776949909"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x",
"product": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x",
"product_id": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x",
"product_identification_helper": {
"purl": "pkg:oci/assisted-service-9-rhel9@sha256%3Afe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252?arch=s390x\u0026repository_url=registry.redhat.io/multicluster-engine\u0026tag=1776983527"
}
}
}
],
"category": "architecture",
"name": "s390x"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64 as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x as a component of multicluster engine for Kubernetes 2.10",
"product_id": "multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
},
"product_reference": "registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x",
"relates_to_product_reference": "multicluster engine for Kubernetes 2.10"
}
]
},
"vulnerabilities": [
{
"acknowledgments": [
{
"names": [
"Omer Vishlitzky",
"Nick Carboni",
"Riccardo Piccoli"
],
"organization": "Red Hat",
"summary": "This issue was discovered by Red Hat."
}
],
"cve": "CVE-2026-7163",
"cwe": {
"id": "CWE-312",
"name": "Cleartext Storage of Sensitive Information"
},
"discovery_date": "2026-04-27T04:18:06.534000+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463152"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability in the assisted-service REST API, an optional Assisted Installer (assisted-service) component in the Multicluster Engine (MCE), allows an authenticated user with minimal namespace-scoped privileges to obtain administrative credentials for arbitrary clusters provisioned through the hub. \n\nThe credentials download endpoint (GET /v2/clusters/{cluster_id}/credentials, which returns the kubeadmin password) and the kubeconfig download endpoint are operational in AUTH_TYPE=local mode, the only authentication mode available in on-premises ACM/MCE hub deployments. The local authenticator unconditionally grants full administrative access to any request bearing a valid JWT, with no per-endpoint restrictions. A valid local JWT is embedded as a plaintext query parameter in InfraEnvStatus.ISODownloadURL and is readable by any user who has get rights on an InfraEnv object in their own namespace.\n\nThe affected components ship as part of Multicluster Engine (MCE). The Red Hat Advanced Cluster Management (ACM) deployments that include MCE are equally affected.\nThis issue does not affect the hosted SaaS offering (console.redhat.com), which uses a different authentication mode.\n\nSuccessful exploitation gives the attacker the kubeadmin password and kubeconfig for any OpenShift cluster provisioned through the affected hub, granting unrestricted root-level administrative access to those spoke clusters.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "assisted-service: assisted-service: Authenticated users can gain administrative access to OpenShift clusters via credential disclosure",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important vulnerability affecting on-premises deployments of Multicluster Engine (MCE) and Red Hat Advanced Cluster Management (ACM). An authenticated user with namespace-scoped privileges can exploit a flaw in the `assisted-service` REST API to retrieve administrative credentials for OpenShift clusters provisioned through the hub. This grants unrestricted root-level administrative access to affected spoke clusters, stemming from the `AUTH_TYPE=local` mode\u0027s unconditional administrative access with a valid local JWT, which is exposed in plaintext.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-7163"
},
{
"category": "external",
"summary": "RHBZ#2463152",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463152"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-7163",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-7163"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-7163",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-7163"
}
],
"release_date": "2026-04-30T12:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T06:52:26+00:00",
"details": "For more information about Assisted Installer, see the following documentation:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#cim-intro\n\nFor multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro\n\nThis documentation will be available after the general availability release of Red Hat Advanced Cluster Management 2.15.",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12116"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "ADJACENT_NETWORK",
"availabilityImpact": "NONE",
"baseScore": 6.1,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:R/S:C/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "assisted-service: assisted-service: Authenticated users can gain administrative access to OpenShift clusters via credential disclosure"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449833"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T06:52:26+00:00",
"details": "For more information about Assisted Installer, see the following documentation:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#cim-intro\n\nFor multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro\n\nThis documentation will be available after the general availability release of Red Hat Advanced Cluster Management 2.15.",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12116"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-34986",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-04-06T17:01:34.639203+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455470"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Go JOSE, a library for handling JSON Web Encryption (JWE) objects. A remote attacker could exploit this vulnerability by providing a specially crafted JWE object. When decrypting such an object, if a key wrapping algorithm is specified but the encrypted key field is empty, the application can crash. This leads to a denial of service (DoS), making the affected service unavailable to legitimate users.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x"
],
"known_not_affected": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34986"
},
{
"category": "external",
"summary": "RHBZ#2455470",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455470"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34986",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34986"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34986"
},
{
"category": "external",
"summary": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8",
"url": "https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8"
},
{
"category": "external",
"summary": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants",
"url": "https://pkg.go.dev/github.com/go-jose/go-jose/v4#pkg-constants"
}
],
"release_date": "2026-04-06T16:22:45.353000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-30T06:52:26+00:00",
"details": "For more information about Assisted Installer, see the following documentation:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#cim-intro\n\nFor multicluster engine for Kubernetes, see the following documentation for\ndetails on how to install the images:\n\nhttps://docs.redhat.com/en/documentation/red_hat_advanced_cluster_management_for_kubernetes/2.15/html/clusters/cluster_mce_overview#mce-install-intro\n\nThis documentation will be available after the general availability release of Red Hat Advanced Cluster Management 2.15.",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12116"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:3f59623b74897f179a86165b21baad080d562b3acaeb44316273078002b02219_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:448b0ebba6b79d15613a0e77929c44006bced1bab7c1394e8ee50783275f082c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:786b3e50adeca379bf6e1a8ceeddc8bef235dfdbacc1caa77d0c1903c1069569_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-image-service-rhel9@sha256:f11864d3c913d54cbbfdffdf2dd138c8fb43998128d1319cf29c4c731f2f2c73_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:2015da323dfa9350f4192cce4d835c6a156041ebb8f13e3974e86cd8a0ac1114_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:57d6348d03788f7776f78f1ef75cf2cca02a3cfc9a562dd2d34ec00c30c3b25d_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:b6327e916068ceddbce6e1e64d89d0fe6501eaf7db702fd883ddd67412e35dc6_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel9@sha256:bfe5610b8d03fc7a9130d5e7b6dc7a9ac63903e2a21103ecc4d0ff1419eedc74_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:085d4698e4eb08202f1f9f1e6a85a3b0251a5d185ca9c9f4b77612640dd4fb54_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:12c01eb1e7b49ed43c86679afeecfef474dcb2dda051da83df825150fe910b6f_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:52b698386cf12b8423f3af3e27f25455e5bf248b8ed3b2713eca37ed64a78c2a_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-controller-rhel9@sha256:f0ba1bf837f9f7f8db43b9597c49348b17f33d784129571f9f9646d5f6f4ac5c_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:6d7a77accd0f6c9eb52245c5f5b461be4522e251f35e90aec52b0f29ea81873a_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:7a73a376c4cca97ac7e80feade1fc2e652a31982967da489000c86fe810ab823_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:a12f7d2451e297af33630d51d94b2ecba37747e50a33f7cbb7f5c267e63e7258_s390x",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-installer-rhel9@sha256:e1e9c33da21dc580cb93da748a4a22547a05b11fa33a97a744baebf26f351153_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:07ff3070b9860ada744508a2a1710014c23f7f44a1ac8547c8885368d79baee3_ppc64le",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:3774f8be3f1a4ca6a46aa3aba3ed6135dcd90ef0985f9b16e46b8b00e92f8e17_arm64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:73f20e3ce70608c606eeddc39e8dbd08747d0d27b4d6d84aaeddff8b32aaa3a8_amd64",
"multicluster engine for Kubernetes 2.10:registry.redhat.io/multicluster-engine/assisted-service-9-rhel9@sha256:fe73f932f408abfa6bed69664b73af371bb2a58e94a5da43491a65eeee774252_s390x"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "github.com/go-jose/go-jose/v3: github.com/go-jose/go-jose/v4: Go JOSE: Denial of Service via crafted JSON Web Encryption (JWE) object"
}
]
}
RHSA-2026:12118
Vulnerability from csaf_redhat - Published: 2026-05-06 08:17 - Updated: 2026-06-28 22:55A flaw was found in cmd/go. An attacker can exploit this by building a malicious Go source file that uses the '#cgo pkg-config:' directive. This allows the attacker to write to an arbitrary file with partial control over its content, by providing a '--log-file' argument to the pkg-config command. This vulnerability can lead to arbitrary file write.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le | — |
Workaround
|
A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64 | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x | — | ||
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64 | — |
A flaw was found in gRPC-Go, the Go language implementation of gRPC. This vulnerability, an authorization bypass, is caused by improper input validation of the HTTP/2 `:path` pseudo-header. A remote attacker can exploit this by sending raw HTTP/2 frames with a malformed `:path` that omits the mandatory leading slash. This allows the attacker to bypass defined security policies, potentially leading to unauthorized access to services or information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64 | — |
Workaround
|
A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x | — |
Workaround
|
|
| Unresolved product id: Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_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.18.39 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.18.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat OpenShift Container Platform is Red Hat\u0027s cloud computing Kubernetes application platform solution designed for on-premise or private cloud deployments.\n\nThis advisory contains the container images for Red Hat OpenShift Container Platform 4.18.39. See the following advisory for the RPM packages for this release:\n\nhttps://access.redhat.com/errata/RHBA-2026:12069\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.18/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:12118",
"url": "https://access.redhat.com/errata/RHSA-2026:12118"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-61731",
"url": "https://access.redhat.com/security/cve/CVE-2025-61731"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29063",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33186",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35469",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_12118.json"
}
],
"title": "Red Hat Security Advisory: OpenShift Container Platform 4.18.39 bug fix and security update",
"tracking": {
"current_release_date": "2026-06-28T22:55:04+00:00",
"generator": {
"date": "2026-06-28T22:55:04+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.2.6"
}
},
"id": "RHSA-2026:12118",
"initial_release_date": "2026-05-06T08:17:11+00:00",
"revision_history": [
{
"date": "2026-05-06T08:17:11+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-06T08:18:59+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-28T22:55:04+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat OpenShift Container Platform 4.18",
"product": {
"name": "Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:openshift:4.18::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat OpenShift Container Platform"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Afa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3Aafbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Abb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3Ab179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961463"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3Aff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Aadebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777458392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Ad9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ae7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Abcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3A47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3Adc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3A4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Aa4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Abe18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Ae7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3Aea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959625"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Aa4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3Aad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3A47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Afcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976934"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Af60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3A697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Ac40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977190"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3Aa8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Ad3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777465040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Aaa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Aeb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ae1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777281183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Afae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Aefabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Afce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Aeb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ab31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Afcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961858"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777386955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3A0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Abda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Af871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Abeab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3A9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3Ad2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3Aa5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3A7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3A282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977166"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Ac04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960844"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3A9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961520"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Ac007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3Af0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Acda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3Aca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3Af8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3Aad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Ad6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3Adc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3Ac4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Aa22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Aa1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Ae79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977079"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Abd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Ab96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959072"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3A1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3Ae80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977487"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3A019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Aabee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776965563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776964583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776965622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3A8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Acd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3A7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959665"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Aa993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776969100"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Ae4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Aba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Acef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Afca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777386789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-cloud-controller-manager-rhel9@sha256%3Aa129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959667"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-nutanix-machine-controllers-rhel9@sha256%3Aa04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959587"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Add03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959606"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ab8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Aa43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777287257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3A206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777070108"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3Afba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777147660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3Aa7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Aa23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961226"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3Aa344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777377988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3Ac186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9@sha256%3Ac186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959674"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Ae7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256%3Ae7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cloud-controller-manager-rhel9@sha256%3Aa9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959671"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-cluster-api-controllers-rhel9@sha256%3A91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959634"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777287176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ac946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Ad32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Af3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Aa2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-csi-driver-syncer-rhel9@sha256%3A4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"product": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"product_id": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-vsphere-problem-detector-rhel9@sha256%3A04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3?arch=amd64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976659"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-rhel9@sha256%3A42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977216"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-file-csi-driver-operator-rhel9@sha256%3Af2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959648"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961463"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3Ad188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777458392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Afdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ab868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Ae8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3Acaf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959625"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3Ae4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Ae0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976934"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-rhel9@sha256%3Ae5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976840"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-agent-rhel9@sha256%3A2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959140"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-machine-os-downloader-rhel9@sha256%3Ab75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977190"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ironic-static-ip-manager-rhel9@sha256%3A46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959131"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3Ac7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777465040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Aece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Ac6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777281183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Ac1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Acdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Ae9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Abc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ace5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3A1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961858"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777386955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3Ada9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3Acc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3A3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Ad5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cloud-controller-manager-rhel9@sha256%3A3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959692"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-cluster-api-controllers-rhel9@sha256%3Ab256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977206"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9@sha256%3A30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959786"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-ebs-csi-driver-rhel9-operator@sha256%3A58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-aws-pod-identity-webhook-rhel9@sha256%3Ae0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976655"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-controller-manager-rhel9@sha256%3A6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959839"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cloud-node-manager-rhel9@sha256%3A3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959747"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-cluster-api-controllers-rhel9@sha256%3Ab3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959800"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9@sha256%3A439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959793"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-disk-csi-driver-rhel9-operator@sha256%3Ada718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977166"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960844"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-azure-workload-identity-webhook-rhel9@sha256%3Aa264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977062"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961520"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3Acaaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3Adcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3A1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3Afcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3Ae6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3Ae65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Aafeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3Aa25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977079"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3A1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Ac38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3Aeb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3Aad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3A669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959072"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Ae2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"product_id": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-image-customization-controller-rhel9@sha256%3A933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959762"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3Aa2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3Aabfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776965563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776964583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776965622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Aa493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Ae18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3A85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3A9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-aws-rhel9@sha256%3Aa4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959695"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-azure-rhel9@sha256%3A37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977129"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3A5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959665"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3Aa3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3Ac3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776969100"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Aeca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3A527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Ac19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Adcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777386789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3A4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959606"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3A66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Ab421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Ae8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3Ab19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ae14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3Af49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777287257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Afbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Aaaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961226"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777377988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777287176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ace4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3Ac356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Ac756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b?arch=arm64\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961488"
}
}
}
],
"category": "architecture",
"name": "arm64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3A70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3Abaa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961463"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3A05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3A34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777458392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3Ad0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3Ad177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3Ac9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Ad76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3A3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3Aee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3Acd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3A920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3Aa2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3Ad883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3A4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959625"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Aaa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3Ab52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976934"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3Acab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3A2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3Aebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777465040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Abdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3A0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3A98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3Ae938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3A4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777281183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3Ab1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Ab40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3A24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3A48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3Aabc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ac70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3Acc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3Ae9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Aa39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961858"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3A204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777386955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3Ae0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Acc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Afd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3Ac0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3A6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3Ae0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3A0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3Ac7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3Aa795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960844"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961520"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3Acb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3Aa4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3A592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3A20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Aa164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3A50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3Af82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3Af949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3A09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977079"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ace713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3Aae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3Aa786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3Ae7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Ae76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3A6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3A35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3Ab16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959072"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-cloud-controller-manager-rhel9@sha256%3A7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959938"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9@sha256%3A26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959828"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256%3A80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959979"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977487"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-machine-controllers-rhel9@sha256%3Ac46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3Ada917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776965563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776964583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3A59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776965622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3A3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Adc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ab29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Ad0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3A4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776969100"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3A81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3Ae1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Aa294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3Adec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3A809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3Adf9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777386789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Ada970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959606"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Afb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3A4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3Ac3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3A64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3A658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777287257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3Ad99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3A7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961226"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777377988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3A5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777287176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3A4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Ab2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3A4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3Abc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b?arch=s390x\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961488"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9@sha256%3Abad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959029"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"product_id": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/aws-kms-encryption-provider-rhel9@sha256%3A55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976672"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-kms-encryption-provider-rhel9@sha256%3A567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961463"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-machine-controllers-rhel9@sha256%3A2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960768"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-runtimecfg-rhel9@sha256%3Ae9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960643"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-etcd-rhel9-operator@sha256%3A2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960437"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-monitoring-rhel9-operator@sha256%3Af90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961740"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-network-rhel9-operator@sha256%3A54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777458392"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-node-tuning-rhel9-operator@sha256%3A513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991255"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-policy-controller-rhel9@sha256%3A11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960504"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-storage-rhel9-operator@sha256%3A22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961686"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-version-rhel9-operator@sha256%3Aadc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976945"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-configmap-reloader-rhel9@sha256%3Ad4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960400"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"product_id": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/container-networking-plugins-microshift-rhel9@sha256%3A98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977459"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-coredns-rhel9@sha256%3A756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977482"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-attacher-rhel9@sha256%3A6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977506"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9@sha256%3Ae4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960303"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-manila-rhel9-operator@sha256%3Aec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960803"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-driver-nfs-rhel9@sha256%3A39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977219"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-livenessprobe-rhel9@sha256%3Afd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-node-driver-registrar-rhel9@sha256%3A168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959903"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-provisioner-rhel9@sha256%3A506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959982"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-validation-webhook-rhel9@sha256%3A2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960688"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"product_id": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/driver-toolkit-rhel9@sha256%3Acba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991560"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"product_id": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/egress-router-cni-rhel9@sha256%3A47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961384"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-workload-identity-federation-webhook-rhel9@sha256%3A6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959625"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-proxy-rhel9@sha256%3A8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959028"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-alertmanager-rhel9@sha256%3A33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961608"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-node-exporter-rhel9@sha256%3Aacd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9@sha256%3A69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976934"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hypershift-rhel9@sha256%3A460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960498"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-proxy-rhel9@sha256%3Aa12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960904"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-rbac-proxy-rhel9@sha256%3A623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977335"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-state-metrics-rhel9@sha256%3A9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976723"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-marketplace-rhel9@sha256%3A759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961247"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-monitoring-plugin-rhel9@sha256%3A184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777465040"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-rhel9@sha256%3Ae8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961208"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-cni-microshift-rhel9@sha256%3A55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976905"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-networkpolicy-rhel9@sha256%3Abfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961238"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-networking-console-plugin-rhel9@sha256%3Ae9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459211"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-server-rhel9@sha256%3A2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"product_id": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/oc-mirror-plugin-rhel9@sha256%3Ab3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961082"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-builder-rhel9@sha256%3A1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777281183"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-rhel9@sha256%3A884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977030"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9@sha256%3Af7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777459374"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-console-rhel9-operator@sha256%3Afbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960428"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-deployer-rhel9@sha256%3Abfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977886"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-haproxy-router-rhel9@sha256%3A048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776991165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-hyperkube-rhel9@sha256%3Ac444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976992"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-keepalived-ipfailover-rhel9@sha256%3A7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960418"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-pod-rhel9@sha256%3A4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977214"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-docker-registry-rhel9@sha256%3Ada748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961858"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tests-rhel9@sha256%3Ae846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777386955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-state-metrics-rhel9@sha256%3A3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cluster-api-controllers-rhel9@sha256%3A7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960407"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-lifecycle-manager-rhel9@sha256%3A88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961355"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-registry-rhel9@sha256%3Afc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960889"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-api-server-rhel9@sha256%3Aeab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977565"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-csr-approver-rhel9@sha256%3A4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961890"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-node-agent-rhel9@sha256%3Ac51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977144"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-orchestrator-rhel9@sha256%3A8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960584"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-agent-installer-utils-rhel9@sha256%3Af4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959933"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-apiserver-network-proxy-rhel9@sha256%3A821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961368"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"product_id": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/azure-service-rhel9-operator@sha256%3A3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960844"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-cluster-api-controllers-rhel9@sha256%3A8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961520"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-installer-rhel9@sha256%3A10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978954"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-baremetal-rhel9-operator@sha256%3A9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959609"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cli-artifacts-rhel9@sha256%3A267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776978080"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cloud-credential-rhel9-operator@sha256%3A2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"product_id": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/cloud-network-config-controller-rhel9@sha256%3A63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960917"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-api-rhel9@sha256%3A67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-authentication-rhel9-operator@sha256%3Afe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977198"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-autoscaler-rhel9-operator@sha256%3A1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976670"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-baremetal-operator-rhel9@sha256%3Adc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976698"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-bootstrap-rhel9@sha256%3A4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977468"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-capi-rhel9-operator@sha256%3A3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977534"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-cloud-controller-manager-rhel9-operator@sha256%3Aa73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960524"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-api-rhel9@sha256%3A3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-config-rhel9-operator@sha256%3Aae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-control-plane-machine-set-rhel9-operator@sha256%3A18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256%3A102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959644"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-dns-rhel9-operator@sha256%3A19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960427"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-image-registry-rhel9-operator@sha256%3A7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960957"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-ingress-rhel9-operator@sha256%3A93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977493"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-apiserver-rhel9-operator@sha256%3A56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960444"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-cluster-api-rhel9-operator@sha256%3A1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960581"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-controller-manager-rhel9-operator@sha256%3A147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959626"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-scheduler-rhel9-operator@sha256%3A6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256%3Af9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977079"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-machine-approver-rhel9@sha256%3Ab764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959658"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-olm-rhel9-operator@sha256%3A34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960373"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-apiserver-rhel9-operator@sha256%3A4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960923"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-openshift-controller-manager-rhel9-operator@sha256%3A9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977228"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9-operator@sha256%3A23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976721"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-samples-rhel9-operator@sha256%3A7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959018"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-cluster-update-keys-rhel9@sha256%3A17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960488"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-container-networking-plugins-rhel9@sha256%3A58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976971"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-resizer-rhel9@sha256%3A2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976955"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-external-snapshotter-rhel9@sha256%3Afd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959614"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-csi-snapshot-controller-rhel9@sha256%3Ab621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961239"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-etcd-rhel9@sha256%3Abda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977470"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"product_id": "registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/frr-rhel9@sha256%3A7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959072"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cloud-controller-manager-rhel9@sha256%3A82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977011"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-cluster-api-controllers-rhel9@sha256%3A12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960773"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-rhel9@sha256%3A0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960431"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-gcp-pd-csi-driver-operator-rhel9@sha256%3Aa013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960513"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ibmcloud-cluster-api-controllers-rhel9@sha256%3A25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977487"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-insights-rhel9-operator@sha256%3A5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960894"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-exporter-rhel9@sha256%3A94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960876"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"product_id": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/insights-runtime-extractor-rhel9@sha256%3A167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961637"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-rhel9@sha256%3A92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776965563"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-altinfra-rhel9@sha256%3A99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776964583"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-installer-artifacts-rhel9@sha256%3Acd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776965622"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"product_id": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kube-metrics-server-rhel9@sha256%3Afb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960951"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kube-storage-version-migrator-rhel9@sha256%3Acde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961689"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-kubevirt-cloud-controller-manager-rhel9@sha256%3Aa3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960536"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"product_id": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/kubevirt-csi-driver-rhel9@sha256%3A331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961346"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-libvirt-machine-controllers-rhel9@sha256%3Ac34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959685"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-rhel9-operator@sha256%3Abe8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961818"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-gcp-rhel9@sha256%3Ab748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959665"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-api-provider-openstack-rhel9@sha256%3A7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960761"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-config-rhel9-operator@sha256%3Ad456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961207"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-machine-os-images-rhel9@sha256%3A60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776969100"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-admission-controller-rhel9@sha256%3Ab8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976708"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-route-override-cni-rhel9@sha256%3A9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976705"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-multus-whereabouts-ipam-cni-rhel9@sha256%3Aefff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976709"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-must-gather-rhel9@sha256%3A409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977949"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-interface-bond-cni-rhel9@sha256%3Addeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961694"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-network-metrics-daemon-rhel9@sha256%3A32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959624"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"product_id": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/network-tools-rhel9@sha256%3A61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777386789"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-oauth-apiserver-rhel9@sha256%3Ab9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959606"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-catalogd-rhel9@sha256%3Ae41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976702"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-olm-operator-controller-rhel9@sha256%3Abcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977182"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-apiserver-rhel9@sha256%3A2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959676"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openshift-controller-manager-rhel9@sha256%3A2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959663"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9@sha256%3Ab23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961613"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cinder-csi-driver-rhel9-operator@sha256%3A5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976718"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-openstack-cloud-controller-manager-rhel9@sha256%3Ad6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960383"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-operator-framework-tools-rhel9@sha256%3A75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960542"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"product_id": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ovirt-csi-driver-rhel9@sha256%3A4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959666"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-rhel9@sha256%3A8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777287257"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9@sha256%3Accc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777070108"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-block-csi-driver-rhel9-operator@sha256%3A915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777147660"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-cloud-controller-manager-rhel9@sha256%3A3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977416"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-powervs-machine-controllers-rhel9@sha256%3A38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"product_id": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/openshift-route-controller-manager-rhel9@sha256%3A2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959659"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-service-ca-rhel9-operator@sha256%3Aa409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961226"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-tools-rhel9@sha256%3A34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777377988"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-ovn-kubernetes-microshift-rhel9@sha256%3Ae6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1777287176"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prom-label-proxy-rhel9@sha256%3Ac1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776977113"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-config-reloader-rhel9@sha256%3Aec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776959615"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-rhel9-operator@sha256%3A66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776976947"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-prometheus-operator-admission-webhook-rhel9@sha256%3Afbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960661"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-telemeter-rhel9@sha256%3A8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776960399"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"product": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"product_id": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"product_identification_helper": {
"purl": "pkg:oci/openshift/ose-thanos-rhel9@sha256%3A2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b?arch=ppc64le\u0026repository_url=registry.redhat.io/openshift4\u0026tag=1776961488"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x"
},
"product_reference": "registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64"
},
"product_reference": "registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64"
},
"product_reference": "registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x"
},
"product_reference": "registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64"
},
"product_reference": "registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64 as a component of Red Hat OpenShift Container Platform 4.18",
"product_id": "Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
},
"product_reference": "registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64",
"relates_to_product_reference": "Red Hat OpenShift Container Platform 4.18"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-61731",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-01-28T20:01:45.587773+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2434433"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in cmd/go. An attacker can exploit this by building a malicious Go source file that uses the \u0027#cgo pkg-config:\u0027 directive. This allows the attacker to write to an arbitrary file with partial control over its content, by providing a \u0027--log-file\u0027 argument to the pkg-config command. This vulnerability can lead to arbitrary file write.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cmd/go: cmd/go: Arbitrary file write via malicious pkg-config directive",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is Important rather than Moderate because compiling a malicious Go source file can cause `pkg-config` to create or append data to files at attacker-chosen locations, subject to the permissions of the build user. This can enable unintended filesystem modifications during the build process, which can lead to broken builds, alter tool behavior, and poison caches or artifacts, even without direct code execution.",
"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.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-61731"
},
{
"category": "external",
"summary": "RHBZ#2434433",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2434433"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-61731",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-61731"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-61731",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-61731"
},
{
"category": "external",
"summary": "https://go.dev/cl/736711",
"url": "https://go.dev/cl/736711"
},
{
"category": "external",
"summary": "https://go.dev/issue/77100",
"url": "https://go.dev/issue/77100"
},
{
"category": "external",
"summary": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc",
"url": "https://groups.google.com/g/golang-announce/c/Vd2tYVM8eUc"
},
{
"category": "external",
"summary": "https://pkg.go.dev/vuln/GO-2026-4339",
"url": "https://pkg.go.dev/vuln/GO-2026-4339"
}
],
"release_date": "2026-01-28T19:30:30.844000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-06T08:17:11+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\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:7f01fc38ab2019240de14a093b1a603ed5817b5fffb4a8029325395b1d071175\n\n (For s390x architecture)\n The image digest is sha256:65283a2e0fb692b38a66bdb7b960e7c8173b3825695190799b62d06d273c9c3e\n\n (For ppc64le architecture)\n The image digest is sha256:8443e22b36b2e389440a0ba92ed042f8634d89397748a48d3428d14c75e740a3\n\n (For aarch64 architecture)\n The image digest is sha256:8fa4a520389d078169b042fffefde905b965f09014b4ce706288e08a64219ec8\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12118"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 8.6,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "cmd/go: cmd/go: Arbitrary file write via malicious pkg-config directive"
},
{
"cve": "CVE-2026-29063",
"cwe": {
"id": "CWE-915",
"name": "Improperly Controlled Modification of Dynamically-Determined Object Attributes"
},
"discovery_date": "2026-03-06T19:00:57.982727+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2445291"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Immutable.js, a library for persistent immutable data structures. This vulnerability, known as Prototype Pollution, allows an attacker with low privileges to inject unwanted properties into core JavaScript object prototypes without user interaction. By manipulating specific APIs such as mergeDeep(), mergeDeepWith(), merge(), Map.toJS(), and Map.toObject(), a remote attacker could potentially execute arbitrary code or cause a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Exploitation of this vulnerability requires that an attacker is able to provide arbitrary data to clients of this library in a way that calls the affected functions with data the attacker controls. In most deployments, the ability to provide data in this fashion requires that an attacker has some degree of privileges to access the affected applications.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29063"
},
{
"category": "external",
"summary": "RHBZ#2445291",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2445291"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29063",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29063"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29063"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v3.8.3"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v4.3.8"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5",
"url": "https://github.com/immutable-js/immutable-js/releases/tag/v5.1.5"
},
{
"category": "external",
"summary": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw",
"url": "https://github.com/immutable-js/immutable-js/security/advisories/GHSA-wf6x-7x77-mvgw"
}
],
"release_date": "2026-03-06T18:25:22.438000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-06T08:17:11+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\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:7f01fc38ab2019240de14a093b1a603ed5817b5fffb4a8029325395b1d071175\n\n (For s390x architecture)\n The image digest is sha256:65283a2e0fb692b38a66bdb7b960e7c8173b3825695190799b62d06d273c9c3e\n\n (For ppc64le architecture)\n The image digest is sha256:8443e22b36b2e389440a0ba92ed042f8634d89397748a48d3428d14c75e740a3\n\n (For aarch64 architecture)\n The image digest is sha256:8fa4a520389d078169b042fffefde905b965f09014b4ce706288e08a64219ec8\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12118"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "immutable-js: Immutable.js: Arbitrary code execution via Prototype Pollution"
},
{
"cve": "CVE-2026-33186",
"cwe": {
"id": "CWE-551",
"name": "Incorrect Behavior Order: Authorization Before Parsing and Canonicalization"
},
"discovery_date": "2026-03-20T23:02:27.802640+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_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.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33186"
},
{
"category": "external",
"summary": "RHBZ#2449833",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449833"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33186",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33186"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33186"
},
{
"category": "external",
"summary": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3",
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-p77j-4mvh-x3m3"
}
],
"release_date": "2026-03-20T22:23:32.147000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-06T08:17:11+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\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:7f01fc38ab2019240de14a093b1a603ed5817b5fffb4a8029325395b1d071175\n\n (For s390x architecture)\n The image digest is sha256:65283a2e0fb692b38a66bdb7b960e7c8173b3825695190799b62d06d273c9c3e\n\n (For ppc64le architecture)\n The image digest is sha256:8443e22b36b2e389440a0ba92ed042f8634d89397748a48d3428d14c75e740a3\n\n (For aarch64 architecture)\n The image digest is sha256:8fa4a520389d078169b042fffefde905b965f09014b4ce706288e08a64219ec8\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12118"
},
{
"category": "workaround",
"details": "To mitigate this issue, implement infrastructure-level normalization to ensure all incoming HTTP/2 `:path` headers are properly formatted with a leading slash before reaching the gRPC-Go server. This can be achieved by configuring a reverse proxy or API gateway to validate and normalize the `:path` header. Ensure that any such intermediary is properly configured and restarted to apply the changes, which may temporarily impact service availability.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_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.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "google.golang.org/grpc/grpc-go: google.golang.org/grpc/authz: gRPC-Go: Authorization bypass due to improper HTTP/2 path validation"
},
{
"cve": "CVE-2026-35469",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2026-04-13T03:52:35+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457729"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the SPDY streaming code used by Kubelet, CRI-O, and kube-apiserver. An attacker with specific cluster roles, such as those allowing access to pod port forwarding, execution, or attachment, or node proxying, could exploit this vulnerability. This could lead to a Denial of Service (DoS) by causing the affected components to become unresponsive.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important denial of service flaw affecting OpenShift Container Platform. An attacker with specific elevated cluster roles, such as those permitting pod port forwarding, execution, attachment, or node proxying, could exploit a vulnerability in the SPDY streaming code of Kubelet, CRI-O, and kube-apiserver, leading to unresponsiveness of these critical components.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le"
],
"known_not_affected": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35469"
},
{
"category": "external",
"summary": "RHBZ#2457729",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457729"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35469",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35469"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35469"
}
],
"release_date": "2026-04-13T23:59:59+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-06T08:17:11+00:00",
"details": "For OpenShift Container Platform 4.18 see the following documentation, which will be updated shortly for this release, for important instructions on how to upgrade your cluster and fully apply this asynchronous errata update:\n\nhttps://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html/release_notes/\n\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:7f01fc38ab2019240de14a093b1a603ed5817b5fffb4a8029325395b1d071175\n\n (For s390x architecture)\n The image digest is sha256:65283a2e0fb692b38a66bdb7b960e7c8173b3825695190799b62d06d273c9c3e\n\n (For ppc64le architecture)\n The image digest is sha256:8443e22b36b2e389440a0ba92ed042f8634d89397748a48d3428d14c75e740a3\n\n (For aarch64 architecture)\n The image digest is sha256:8fa4a520389d078169b042fffefde905b965f09014b4ce706288e08a64219ec8\n\nAll OpenShift Container Platform 4.18 users are advised to upgrade to these updated packages and images when they are available in the appropriate release channel. To check for available updates, use the OpenShift CLI (oc) or web console. Instructions for upgrading a cluster are available at https://docs.redhat.com/en/documentation/openshift_container_platform/4.18/html-single/updating_clusters/index#updating-cluster-cli.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:12118"
},
{
"category": "workaround",
"details": "To mitigate this issue, review and restrict the assignment of Kubernetes cluster roles `pods/portforward (create)`, `pods/exec (create)`, `pods/attach (create)`, and `nodes/proxy (get/create)` to untrusted users or service accounts. Ensure that only authorized and necessary entities possess these permissions. Modifying RBAC policies can impact the functionality of applications and services that rely on these permissions; careful testing is recommended.",
"product_ids": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:1603e1a021f3c0e49013aa2b424b2177d0a611651b00c6ad928eec414807998d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:55452d53492a609285d27c9333474dce3ea4377fc136a7b1a41031f3cf1fb1f8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:5dd3b77ce805dedc3f52a69331250dbc566c3e5e37d4d48bafa8e90d4dfddbfc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/aws-kms-encryption-provider-rhel9@sha256:baa4911638112c305a50a64bbd60562097dd6a1b085b0d89a9df64bc1b3e7125_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:29338f4194f88c0dcd1a63bdc4e096a6c018ad9a4d428dd26eecd2d63787a767_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:567f9bea7d7c8da75d4643150232baf43a76bed2c92357ecbc231b3bd4f7a435_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:76a91dd7f638376141ddc7028bdefa97c265a22c3689ae6ee31056bda351643c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-kms-encryption-provider-rhel9@sha256:b179b98053c20b0765a1521b6b81ea037ac71f008ca5df2524d2ddfccf5449fc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:3e39f80c9a81db7496f4822d24d18c7a7f9de46e86df5eca2aef31ba53c891bc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:818d8658ab902e693f4de7b346b472295dde1ff3e76605ea32323f8031783e93_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:a795ceaa18133211034e5bf6bb3c7ba557e5d581c495dda2d80b24c8c900b2f7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/azure-service-rhel9-operator@sha256:c04c6e273154683893b523e6c8710fe07cf587a050be656ee8508eef1d5f3672_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:22b9397ad3e0104a5e81cfdbc0c568cd745632d93fdf2e5d2977daf396ac4475_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:63c901b9e76cf2faaa937beae2f93d122691bb85bcae79f12d4df12ef2edb25c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7759a72e395f54badd8c4f7bd9a3be7bf44c55dfbc1af59f905a677abfa7f5b1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/cloud-network-config-controller-rhel9@sha256:7e385c956fc4abca156487eb55026a5af088a1ab43dc142767bf5855db481677_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:7ebd22fb19b406a24444d4427575931fdbdd620c272adbe7fb074d61180424a9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:98268cf4708c262fefabe610cb99ab936bc350554c394b3d4c6d6fb4429c6fae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:e8d44af7cf9a6537825ed45d5728a3f78d38c7cc2225cd859f3063e5a644c8f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/container-networking-plugins-microshift-rhel9@sha256:ee1f9987bdabe26ba807763d1fd2f58b3c42d8ab037ba183f697e1cf66f83be8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:326d2a6e7e3a0ee55c2531bd22056d3c6ba3565d0e9454407bb70799407c32b0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:4ef4c69f04a3d6fef37dbf00f6a2ea96a621a094a71a672a6d464674bad3cbd2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:cba330f17db481f5eed89bccabcec2841c9986c81bedc80defa6877f7cd0812f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/driver-toolkit-rhel9@sha256:e7b6f8e33c1d0ea13b6aeeecf55d17c2f36d99e92e6dfe4f3609b4d8e2ecc03c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:47ee66ce291d19ae5c4cc1f951b701eafc5a9a0a475618df05a63e93e7fd3126_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:6619d97e0984d5e448c39a53a1915945360fc63e658e98425d1b84e16206fce3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:708103c0112b367946879894c05151f0fbe1c295fa6166d24cbbc447ec0acb20_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/egress-router-cni-rhel9@sha256:caf0d588f0945b618109b1a91c40d58af16d6c79c7e7618745dcadd7858be1a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:76648933962cf15d386355e5d94f3a4bf067bb1411553e83af580737e5516a44_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:7e1c26f6a5942c71259fee1c1047504710348b5f6715eb4e0e2e0b9e7c166344_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:895ee57d2720400842bc4a1b6ad0f7a50c179fce6d764a3ddf0f356393834db1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/frr-rhel9@sha256:b16a72587276ebed704fd76af143d5db7f948de0b31f135aa5668ea73a609402_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:240cdc0c4bbdb23522b96e713da67adbd5cfd218a741672adae0e9ba9d13d273_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:94c68a9c495fb325d6004f8180794d0a06b53a0d0f1f05e472958a3c38c900dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:a2be0320cb181c557294ec3a8ae1b01c395fbae2b0a012b94636f153da3da4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-exporter-rhel9@sha256:abee38464d60f5e9f3bee52f692e471e6f110a6218e0c12448b034b494322451_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:035c2f808ddab3627443c56a5789185f64f5858f353ed1bf88b8b990d408ef45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:167c4799d61e783480b905a8ade1faa74bc658134ad5417c948f36d7bf71c6b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:33dde5f61bd94a08cfac6de9c57a0653bb18953c62badc1566926b2e7fa93ba3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/insights-runtime-extractor-rhel9@sha256:7b01df69730db1f01bac1e24fcefa2d57aa0a9c0e79a057fe6ab367840c77030_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:3e314b5816ffd9412fa797e5eda02948720dbcc49bfdf7b6d79e3a6c91ee38a1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:8fb2e3ddf263a1d16df297585f0dc0473f5aec525114f9134f472665193dacc4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:a493ce619652c39d020189f5693ed61b0a6f63334dd79e82a182686cbbdd5eff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kube-metrics-server-rhel9@sha256:fb437c37d6b2db754ee79b608cc59ee3913123692c1b1147798013e723d8f240_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:07712c0b50ce135983048db7aafac06f7b8016376773b3c6cb6b9948065f816e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:1c5f36d81dce7cd9ada7f93005bb13b794fa9e71937f0e3643a85e6630089033_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:331388b805ddcd1b22026d81dfe0b675fe111273a4adb797936415504492749d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/kubevirt-csi-driver-rhel9@sha256:970f4d55f6e7dfa365ad40d1453b227d0f79f0d79b9af74601b41ff4bb85de9a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:61a51c67534953e1d7dd86e6f44bc9ff712f27f05d6a9180650444d53ddb40c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:69f864728216a0837219b087148b438a9d030eb1f25982e884f52e3f9857e6e0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:dcd4820c35ab18210d5ed05df2ccde3a75d46d76a256ca9b6c1846ebc1d8ead7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/network-tools-rhel9@sha256:df9891f7d86ca52ed303096fcf8e4d6e4b240924c3decde6763488c0df316ef9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:4841c0548e1125d6d9ca42f9b5c23628b44c85dcc80d7752401867ac9266a420_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:7a4b17f70f409397376385d2301419295a0e61fbf9d4b2d16e5dacf9401e469c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:b3b2f7a9ea3dee5fbffd9cc46ab1f33b7986341fdba5015ba508354a94028b05_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/oc-mirror-plugin-rhel9@sha256:e1cccc3c8a7ad847f83a218062e2e4e0fa59ab3fabe71b8422189eef0c764ceb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:2cf1557c778bdd71d96dc76854bc62489081455c823d8db27bd01a616042a302_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:a23468a82824371460e8038b5b6ec491e9124b6714ffc278c7d59c217073ad47_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:d99167535c58eac7857695a66a5434d9e1f3d2a2f1e4c175954e56cc5b74ee8b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/openshift-route-controller-manager-rhel9@sha256:fbf1c2cc91c8f70c3e3a482d2d4a5fac834045ec5a746cf0b3b60177200b4a4f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:0e4ea1e6a37020529e1c4a6defadc71449904edbfa004457f4cafd988f0e0688_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:d5f02a9b299f1cecda71719cd80744abd12f89baa12e0e2f9e0342cc80c00730_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:eab8a0afa8f41b33aada63488550255d6e755087d7228f50ba8ec636b35ea39e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel9@sha256:fd30bcfb8fe4bc66264e62222c9cfb59a8b139cb7da51331ecd5058cf1c2cce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:2e92a5439043792f8d512ea0ecd9612171f497ba1afa4fc55b462c887a5c516b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:4a2c50ca5f8ac888860e32d751840ce3842b86d59eca3cdf61cfbbd14a7b6ed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:945337cae3b4290e70a776dd9f88185970db3fd6aa1b8441fad9b1de3ae4612f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel9@sha256:c0b2f0fd005c620646e3b1b48fbe4a03c74d2e31409a330b974f3bf8fb4e3283_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:00105fd4ffe0e53fab058f839208c278835be37eb44c6cb6f0db6214e594bb4e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:6200571c3c498924cc3a9fd4e60c0636705a1c06d6bd9fb4dbfa416e054fc96e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:bda180470c8c7d4e64fef5b715b4b0031aa73585771906904d47d8fdbb7dc055_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel9@sha256:c51bbf57ad25894fbb254d7efe024c227b549c8c90ebf3183d2d4b4aecea3d37_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:70cff83e5ca85c471569549c56c7bd1c85a00b282a6f7793a07611ccf99cf84b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:8bd939b4f5edcf8b16fdeb249779dddb4bd8d7ad7fed980e197db4c8ed6c56ea_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:e0ceb474eaec99cb8847a6b6702f0368ae61ebc201da25e3e6dfc0a4079b99e6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel9@sha256:f871c1e7cd81dd6f177a4290cbcec32ee09af2c98a10c19146877558aea94020_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0822402813cec9dd1bf7583e0a9935d7c08302f18d00e92708495cf146597347_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:0993d86ab0e87a0afa87be79e16ce875985f5690df61c8c6f108df0446123ad9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:57439e5581a55ce80de2df2da1b9e73a42f1900986c101757c43369351539adb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-agent-installer-utils-rhel9@sha256:f4e84266977738ab5ff266c6f47eedb542bfc8d77ef100d9446ac4c117b7049e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:23d6f24aef25c35b4d288e333275131d539bc241504d68ff264405de96896fcf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:81e6be8b34d53c1772164c50c852751bfb8b2dba1130882e06bf5c284df6fea6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:821647752595240022ca795913d0f905a58ea6b6cb54de4ec0a69e54edee9026_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel9@sha256:c7c0acc505b6c56b554ace2786abade447fca7d47d0def169b754bf0fb599557_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:3d749befcfd6d5af6f55f848464ea1dbc76ab6b33ad72a267438c7ba9a242a2f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel9@sha256:59d3b555b33b00cb0d333b1b2ade3875af21c2f04c529df571dabca10a872441_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:b256478049184dabf7fc4505961a491509005223264af26afaf927eca9d01b03_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel9@sha256:beab9b7c3d3a14aa4de367f14ee1686fddc037815bffc8e339fd8ca90bf540f5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:28b8d1799080d285db1c1a1acd58502c048561e3a22618ddc285a9f4b510aabe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9-operator@sha256:58da516d1e2e0dbf992eda1a5ae39e8cee799574b1eaee61d044da11ea3f9959_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:30e043b5b873ec6e620f3ede3603a1d1606628cd10ac9c269331fb904b684da9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel9@sha256:9e01243bf7a00da75fe69edba19b1c173def5468327d51e5e5eacd3724bf7e36_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:9ddb0bdf6323e1248b06a4f0906792daa1e3060d44271becde21e0b21ab596aa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel9@sha256:e0dff6e80586c5fddf3dc259770335ae876e1f94db8161fe66abbb26fcdecbf6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:6128977f55671a0f25d6e58c743ddac46e7659f7866429e2ec4f02519cbb5d41_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel9@sha256:d2b9197371ef70a930dfa3a00927c6329ef5c7a305455d5f4f94344f2a4ef65f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:3d9af581c6f82eb4795738d2e7bfffbd2f7361bdd1f134f8186d30858471ad43_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel9@sha256:a5e6374d4602cedb33e29500a6d69bdc0b9d19ed53d1b98a717fff6b5fc23071_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:7b3710e0d559f8e4e3cd9ac97e4ba2b5be03bd27b4476a697e834b55aacf5526_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel9@sha256:b3f2b685b0f75e01654154efab9899578ae5a1fbf3dc73fa4b2ca306956fccdb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:282a6f6140d134713a51f553a72077490c0d74d85a9c55cbea0fa5b4f47430dd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9-operator@sha256:da718876de163bda267913996f22c01c1541d456e73eb79f46680dd349373907_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:439c76a1f0733a3272f648345959def4db60cfda9356aa4dbd9e58a17927f4bb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel9@sha256:817ff68d9630147d5fb80e4b575c67e8a4a8a2871adbee092bf5d74694784768_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:bb8a04f40be0e1e35ac44f94de2dced5d5263a79b95e01066cf0103da1f9339e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel9@sha256:f2acaedef51247c95d37e5d74b0d0d083e0b43ce42bc7289dd493d140dc13313_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:42debd804f42bc52b29f8db2ae712b5eff0630ed19452c81c86b0da0d6096d62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel9@sha256:afbf103c58c8ccc1183d3b807fea69b0a8851693d514bb813f57874128f0f66e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:9d0167f7d66b7e30169b391889e8bd57f1b7a8d0f8a80888143902bc3b0d2037_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel9@sha256:a264e0ee813c20d1593ca19d539b5b82ed53bb19b78338467a370a42e889dbdf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:21bc1d94951790846413955d3de714228d493a4b57b7c5232ecec24367e87321_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8de384bb790450ac53ca971d4e3e71acd3dc5947f7ebf5ce7dae768c770cd089_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:8e0ddb60e959eabfb3c8ccc7f1a433313ef573b5dd3bb950a1f5ba64fc9f387b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-cluster-api-controllers-rhel9@sha256:9a3ca255240e1dff07c7c5fe0a72f1d2eba7c10ab321c11c0153ea574b241042_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:10a79c6c83b3ac360f084ca827223c872c06d117990e0204cb75f803a8766fd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:2008d58993a2984e059571d2bddab8a4931836f23aa91d288e4b3032df1312f3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:c007a63dd0e2a21f07d0c9b03abaab31164012cf1a561e2d04d263cecc90d9a6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-installer-rhel9@sha256:cb4f159c1016a8b71022682440f30e1dc6bd51fbf5d643ed830ba7be0298b298_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:2fd72fe29e3bfad84dc1349ecbcf4fda130c21fceba516c611c52fae727e80b9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:4a7de7f89ea7349514ce7d5c40ec0851a61e22c84ac8c45ad3d98a47854e09f9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8bf43145e2b49465d4c17a83895efc7d938fc6c61f79654229c800d5cdcac6d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-machine-controllers-rhel9@sha256:8fa9301c456707ac22a5e165b4b4913a07aedb4620b192929266081fcbf38369_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:030c5d1f4011b8d959a530825c301fd6c5284b3c86e9fc9357900bddec7a8878_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:4c25426c412dd90f60df13d54ecd1686404caa89912ee25a3d834c7f1c898d6b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:9ed7d2f81870893969f6fa09978c3b5f7292c3f875352a7ae13ac919117b4ca1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-rhel9-operator@sha256:a4620532f2424d2935bf72a3938844dc243f3b6583851a6a3279114cd41e8e44_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:05d84fc55fdab8cdbda00592de9d012d45f59b8684db4d6bdafd4c6de88969ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:10810e6228f1f4765a1cb94afc58c02fc621eb133151433f1aefedc30b0844d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:47366eb4b81b8404fd38a1aefaf1254c3b64de3f4b468c8b208369000524ba87_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel9@sha256:e9e38ce9cde17ebc1d343b3f0a8eebbd6d32e4cfcad828aae700da5d745488e4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:0a0892cc2ff21b366bec7b9c08740b8eac91a9b14908ba33d017d4451379f0d3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:1a28ecc0c20e406ac46573a33a94fd3e1b8be43d89a1c3413ac7aecab4cc71e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:267d11f1b3f768a808c3bdd4c8efb68b9ffc378afdc408b60b3e250417c9d23f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-artifacts-rhel9@sha256:29a46edb6aaf3f6bbe5ba32a9097f9f3462dd6df96dbadde19ee87ec7e021dd4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:884b8bd84833389e00c502660819c0fdc8afd743164eb5237933fd6c499cbe93_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:b1210cd619acff032b197ef88be6d3b12cf50c75a34527bb0f601b4ce9433fd7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:c1836005d98266af037e2bc0eddb2a65628d8ecaa87b1d671b848b0c1a5bc40c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cli-rhel9@sha256:fae8d6f288aa9b4dc6812d572c1d2acc6cd4d85b17bf9d73fb723b2104f8708f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2b40dedac29e275954d39f75708f3f08a75f372ba9e9d036679c1780e2227632_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:2ea866c0f7a25930a6e3ec67a881f2bc5ae28730fd01d5aaaa9fb501c8c63f7a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:74e01b84672e5f0489a0740beda5c7a6fcf14afc20f67e4d5929d15bb69fcce4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cloud-credential-rhel9-operator@sha256:f0c2bd7a012355fc223e1e8c29ba2c878f854787488e6131ca9c3edbac6273e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:3d3535bddd309fe34ec0a87ab4b9686c967acb54be74b3b496d385348c4fe54c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:67a38390eec0886c4ac9a89b6c8b6dd41e240dbe82779db3155cb69a5f25c841_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:841c1ca080edcd796eca7473eaa8eea27a0feb7eeb805d99bd9ec919ec978f90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-api-rhel9@sha256:caaf188bc33325c325c0861d5f63186674f162dc689709e9fe65fd92c0c1d80f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:1d86eb15ebaca02a70c6ca85a303eed2572d4f760ac04f2a7af1ef378b0a3e89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:2c40d427ab3d1aabdac143da68343c026d5d78cb11ec4fc3c9f172ecd2efe4a0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:592de6bb5c388dbb2c5acb2d7b6801bc96eb4e752f54fc4f450f2fe0b8e8cc90_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-authentication-rhel9-operator@sha256:fe0e9fa79829e7c0f5353c2186f0ed0ead5dd234109fc277e559ff03ed986dd3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:10470fc5643607db6a6f9e54e3527593917e9a447046d7e129d8fe12b62e8f89_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:1815cd93411d4ae46a188174f83e1170bcbb9b4adbbce3a062f71da489cc291e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:5059bccab19eac02c9825f677e39528261d1303105a546d14b8bfa43a135c246_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9-operator@sha256:dcb2e79aa9042434ef147a7d12d49d72ec4ba0ff9dc901f4145654ecc34db9e3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:1c516c27195a045b32f69eb3920e1dd1cb930390f8ac5afc984ab7e7ea86257b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:70eb39a5bff7f5e520f28da4aea57f4517e08d2016d3b46c27928b7ed53cf6ea_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:bad5aff04c5321e4452610c18b14c30bd1b5d18ae025ad004676602250588388_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-autoscaler-rhel9@sha256:fa2a1a59fb1d3b0e0a57d3d50c1a83f2e4169e1c3f79e2bea97f81cc04ff5e10_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:20fa7790cf47b360ff9dfc5b4764bd1077bffd4faef1f55e46082e5bbe2b2849_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:748672523f67b6400f79b274ea78a31a462c061d761814dbc5bf48d769d01a86_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:cda9a61d0c924ec0bcc858419416ef354ef5d1974e04a3187182e1361dbdc2c1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel9@sha256:dc2e786bc63252380559db8c046d2e91ca7c153ea7fc00a4a86cd757f6511324_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:338893e009776127db0d9b6665870d4d2e0466a87a45956ba44303c592c6ca8a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:4ebc8c53df9919a9d71e26fc9134620758007041153f3baf6af0d4b3461c0d26_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:57914511ddb16616ece66cacde123ead0baabccc993464f0b12cddf0959c4b50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-bootstrap-rhel9@sha256:ca8a45fa13d58c96ac4591b6239df4b5b7f4d426b0d177497b0da82b8492fca3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:3b9e4b90917ca25c949df43a032a64de7d17ce87de14f1b3af6c84703e735cac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:4548d1c9bebe8b5ff0b3f3ec6fd691a9d552abf33794e5c15d4ad3fc50621455_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:83c7d98e3fc8c1dca88fd92cd565c37199e36e2976eb110c2839ee9f1735ae1a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-capi-rhel9-operator@sha256:f8083791a884d6f761531ff0eff065c4d7a2b52d2dfcd4689880ec0e4790074e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:1dd20f906e6afce842f2a7c5f50ba1b8d120da6cb8954a9ba231d527730d98b7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:4f9c9eafb5101a9be2a80a04f422cc8a4fdbfc13b84bfe83d23dfc6133d9c491_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a164a7588b5e3f1fbcb32ca850b8924e1c4b0322a81b34699bfdc0ff7a266f4e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-rhel9-operator@sha256:a73c0a2f0051b5dfe12e9e4a937dc4583a5f87747b6e7775dbb7df67acb77a76_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3c56056527454ca2e532031622af06b8374faaf3e66afdcd455896a885da24c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:3d1c97a0b47d5d93ebe577d37f5cf485f004b92888556a9a0863b1e35cc0ccf6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:729e8e32c387d16607b68425216b048c6d1623ab3ad570d0471e09e8c97c9ae9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-api-rhel9@sha256:ad02917d693155c2aae29c4d3ad743b75b665a6d94a711c999111737946c170d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:50d54daa28304228598267186f6749351036ba0f9d73880030009742699cd190_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5f995dc5b0f063255f7898d50138f4cafe106f5846ee5809f2f270578cca763b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:5ff80346c30db9f22597be27c8fbe6f84dcdbaa01f5babd55d866827368f5cb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-config-rhel9-operator@sha256:ae595f5703264e8cc4eb81e2fce329e2f9307f5a06e365ffd06786026f8d2771_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:18b50f431a2ba85c8124ee172045e58454936b496241c541100b5cc61fd78263_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:19eb18cdb41615d126e30c83d74cc8249ca429e0c7e071b2374e08da2b78b2cc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:770ce8af393eeb400660241f386e6defc1058e0d4382641dd06aa97c842df380_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-rhel9-operator@sha256:fcaf2a512b0678a64b08eed1f9c516c4855cf4a4eec019647c61bdfd9f69b390_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:0fed2b07b264476cae7d399fb600948545aedd328a87f8562801cc152a7de3bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:102ffdc28cae6391d89b581da95ae60897a03863a593a6fc5b075c7953fa356c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:d6c20b6ba5d99eb9b7a4da0bea4838bad81dec0bc83db9d33b4139166b82a1b1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel9-operator@sha256:e6afe85ba9bcae1b2e4a727738b55eed3179d1949aef0c266aaf95b9ab4405d1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:19728c533748a91980020dd064101bed054cde3af4e9a84465ef9f4e50a42f30_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:3e3025c48922918156109fdd152f086cb10eebe414c98492adcde0986228a73d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:986d80519931245727f1283d0b531f849727fc55500a4d37e9e8b69992883fba_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-dns-rhel9-operator@sha256:dc54217f2218ffaf4a3ef0c24f57ee8aac4810a882c1e5de24c44db6343ddc50_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:2996d6d9e4a7ad8f69968792823aaa52b086cf9f7aa0515c360d0f4223ccfd45_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:3b3aa19cd855b1782684d0092d13de9decd067a6ef921858d9437d79644094c6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:7c8520afc10a5e3eb0e1c3aabb38f849bd6f366b024f0a34a287375c5ce3a738_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-etcd-rhel9-operator@sha256:ff46adaf31267d679665b9b93e564a2beeeab67948d0bbffc2aae2c1948d4987_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:30bc22aa65c512ea8a6d99d73aed9a14c234e77b1e4c2f27439f0e82844182f4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:7f4aeecf85ffdb4fbc62a637b07a4596066e8b7a14a1740bd1ce61c68b3dc873_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:905c7656469cddbf28b4d726273d2dd77f573411969a79781d5eb891349c10f5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-image-registry-rhel9-operator@sha256:c4b8df243b377286bd8aa8234ecb2b048e946e84016a7b5d0d119bfaa2f507a7_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:93c151f67514c2f0abe82d66b4b9eedb9c9aed43bcfe6dcc3c45445b47c44463_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:a22552fb0ac245bc43b9215e7eeabcb522182f3b70540bd05b8ea31d602356d3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:afeb2672986fd3572fceacf4f85057e7bad5af152bde70fc29d113abd7fac89b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-ingress-rhel9-operator@sha256:f82368567b087cf994b6773a516f71016a46a7e0e0ecb725fb315460cd48b178_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:0c2ee25de4866692b8a16e03ca9af058deb1c8eff47c039cd208cea3df66d5eb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:2ce2fd79567e6579b646b12112cf108f5263f96b2e619b46b744ed140aca7830_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:4e3386265a0eb18981a02041110c4c6f25844adb364ba8146e80c8ed94b57639_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-apiserver-rhel9-operator@sha256:56c33d179b1bfa4db7ebfcbe67a91ff4eed0eb07e2fe3c90f83b95c39da17aba_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:08eaa7f6fa047239e975168a9f0d5e5519bb22c7e66d478f34e720c6a0dcfb16_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:1352b46aac92aaa71734502c5a5fb63c54305db0a10dd1f61fac26541b049e6b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:22e5ca7b7fc38cf32848e8fe8ff0e306c6072443d02eb331e4904dfdf114b19c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel9-operator@sha256:f949d24bdf52d90368befc619e04f279633e69fa76df51d74b5868fe16d164b6_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:147d8d047bf4f9f4ce4e40e942cd1fdc0507c49a95b86bd28a8ae5f9ca59baae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:700b0994f1e8ca84e08a839ac1d8be5300addc7a845ac1f45fb5dcedc8515cb7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a1fbc0a860abfc10cec8b69737bba60404d8d13140905d485130925110ca90c5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-rhel9-operator@sha256:a25f69ae7dff725cbc4aa6ba31fa2b0c37a3d4c99abf99b63072e555b1927c67_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:08bba4724c13140cf2bbb554b80e979acf677163c993889ac9cad01f8916ff2f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:6953135995fdceda1069af2b00566b5a838bd3f7115fbfa756338aec6c6f53a3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:906c82e79a123dd4673488cb87ffa6bbe5b32c906a02baaf8ceb828d49a1d555_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-scheduler-rhel9-operator@sha256:94bcc8d275a120e49780ada6ec7da91a22c27b53bf6ba31c7d9a187242c9d115_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:09c41a23b33b05f672762c70782c6a9dc254ba3087d1c2e9dd8b8a37128f1c50_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:910bb05d9a127adb0cd13bdea735f2b3a2be6d896e02fccfa8f7ac74dbe72ece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:e79d73bf16a24eab9b6a89e247631475d59224bb7c513525db771412df877440_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel9-operator@sha256:f9c1ccba7626e701388ede2bd45fd3e2d440c7bcc6a0f5c56abdcd7b1669d1b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:0504b015fa005720d1781c5bfcfcf8e19396fb7b1297cb23dd655eec83f97e3d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:1a4fcdfeb36b1270e3f3f70de80bceef9308f50080292eaf8ed0d9ad8e7acfbf_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:b764b754e3bd6dbef4207d502957e29ca809513a13a42fbd406215b57fab8e01_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-machine-approver-rhel9@sha256:ce713bfaf227d00afd8546b63089afbfbe11994a61638485e5f00b3d197f9df7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:34467d8afa7868a36fd002a0b938efe71337bb551f3da8bfeb44f12be4cbde53_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:8eac9f4dc2a533a70317f693f16065222edded50255e45a9adf932f2fc360ced_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:adebda0493a86c72f568e342d3f024594faf522b0a8013b3f02e197835b156da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-monitoring-rhel9-operator@sha256:f90905ee325a205e7b40e967a021a6330f00e931bb88b1b23ae58411ec90b9aa_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:369a140100acb04a4b2fb5c73febcd5fc516518e00e532543e171af06f27c4f5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:54493f1344675dbb335cd4c0d1a6b7fc919b006a80a78385d101bac6ed80d070_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:5e5d8a2ad6c14287873b3dd56dc2f10b01939d44d449424a3c6d100eb18ae729_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-network-rhel9-operator@sha256:d188b9d1b00a6d3c403972c1c6ec2c709e0f5b0ae5d08a24b9e97af9606f6530_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:513f7f4d0280c70e2ee3d32a4eb35682a4b0955666509bd0c8a07955efde5704_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:66001094d716baf84f01ec5f43940fe833c5e390e1e86b710f5473989dbaae12_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d0588a21e56f7efb88c95f53e89e042194082b47826ffbe73fb69f14161bac08_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-node-tuning-rhel9-operator@sha256:d9e98c89a016288b730ff5ae41bf18d648bb3d604363325d7f3f5a97874c9f98_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:34e593a79e2adb95615deac7f6d91e822283b0e76de1c73f64aebe6a5273e9d4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:52f85edd7e59a5af91a3ac70c6afe1a7b6789a2f3ea472dca48bf05e64d533c4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:83f09633b615cbaf6f7a15986f247202641f4743429640b5955a26f57bba7dd3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-olm-rhel9-operator@sha256:e65da088bc344e2b746aa965da954f44ca4725c2a962ee5589b33a8599d56972_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:4e14ff51c603b9bf70d53a84a7d81ec09507b4a4c2f100d12002113a6c2410d6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:ae901a759fa480d86b21a22d714e47dc4275efc9c0d412a3e83aa554e032ca09_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:bd55af7312699364e703206911119ee0692ab26dfe871a319807e12e617a46ae_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-rhel9-operator@sha256:c38dc302437d542d52cfad3c02b4e9677eb04ea055b1dbc9161e5a089fb015de_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:2a9b4b8ef9eda9fb5ed7981126ef69df1d6bf6ec74f3aa42c0d4d598e78c4490_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:8269f4501cc525ed4c13df1b0039a48cee96b6dd591a44c8d8418f042ab9ce0f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:9b4eae3879c3c34657d97a5d6dd1b2bfd9db338b3a239878e026520db24c95b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-rhel9-operator@sha256:a786ae5881df110fa416a2f0e9ab08f3d5e4eac90c9bb35f7d2c6326b1f5f7b9_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:11bbf948ee457527955004b20ab0b01db863dcf4e3453680ce1e8fa8b3fd7f13_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:d177aedf300700330c48ae2d63c5ee9d948c1f6f3e896d79dac89f420f45ab7c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:e7b6e8edff4f6ddc76f10386acf721056ad922e577c21f9e3b26dcf073e00161_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel9@sha256:fdd2381c307b61753afc5ee9290189310b376a602f7d7795427b392d39c967fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:05fd9f3b7994badf7060925c13a805ca248ed035bbf89f16f7f227eef86cb104_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:4f7ed516d0e904f31613b37951bf9c3d9f60683e689de872fcb94cd9efeed7d5_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:7412a77babd4fe82e466faa17769e5bb96a2eb00809a7fe8e785e3e58311877b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-samples-rhel9-operator@sha256:99cf8132f604672b0bd1011f074f6aae0b448507b4094ae2d72330a479372a7e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:22656d02d192f03cfa6680dc234dbfa8619b4da5e52b127e01b0c0e0da2a27fe_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:39858df4a742f0ebf8ddc1f715cf908917ebb82e1d8bb0094a53f0bbfb7af37d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:bcdd6da41d2e48ec2882e61cb1f52f9cf628fbfebd035a46c2c5045dee223126_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-storage-rhel9-operator@sha256:c9da04bc65efc93a316d29bd2fc0d60853f6399cdee0a802d587cf2fc9c209c2_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:17d56e649fbfbd7962b9778fe1c2df47e2284e90a7daa0698189eb74e65df87e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:422cce538d71286298ed7a75122668ec979d09331fb18eda8fb1b37595931328_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:6854b83c536c54bbff04f3d3359c8b2c00697a83b07758ebab8d38f8c0af30cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-update-keys-rhel9@sha256:e7955c620e56b8e770d4fec505178b50ca3d762465e70157879b23a18e5857fc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:47c963468678ea5b23c4f6a6e718f2699e58d4f076a434f71d8edd8acfdb9cb1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:adc5dd7076621e6c6dad97e0fa1b5f605bb9259da00e0d05aebcc9cbfbbbc9ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:b868d7eb39114fc6aeb1883074dfc352b053abb2d547668080f33a461cf5f5c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-cluster-version-rhel9-operator@sha256:d76752ca08762d9575eb89b961aa7f194393ae32fc181e460e5e75fc0ae46d01_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:0476ef19e648e812f0d50a64df4e3547f58c090df22e5a70876f2308d2472d01_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:1906a614ba76345e071a4e23cf51b4a4a87737df4891c9c0ab046305c58df99b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:3f4c7cad1cb3f88f6159a1f91c9dd30dd764b0a415784555d88fa893ebab78a4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-configmap-reloader-rhel9@sha256:d4a95b1035d3182f629ccec9a25417a4a2a1526d04b4cc3b7785b77c83812885_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:24fa78ab0c6809e4d9ac82993e7790fee542504d106d16c074171df37963c576_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:e9f73ce4d046b8914814690e51baa3ddc2afe488226f08dd935bfffbce017282_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fbaaf3b2bfbc722b4eddf0b95043d47fb188686565fd517087e49909a98242e6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9-operator@sha256:fce993452fbb9d9c7e2550c3ba1632aaed5fd8368519f5367da82e2a19fccdbe_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:b40fe587492c6f59a8e31ce59ae818a3ca14c9627b1e85124b26219945f570ee_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:cdff8f7c1e950ab89913bdedea12388dbd00ab66c9ce14ca92ead0f21f7d70fb_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:efabcd010b141411c274056ace5710d4632c86adf50b598eefc74343621f1701_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-console-rhel9@sha256:f7020550f3bad8720c2e7121799e88560a9006a753a1fdc92d0bf2d2eccf7fc5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:2fd634433541ea5a98e5d771d35beee4e63f51e418af5322e52f0292a6e74b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:58118f80b7302eca0e02df2f7907b7ffb2b87143cf76b485bcf421439518f2b8_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:600f74007fe809925a319945ed9c3b13d58425b289760295a4c102abb58e3c24_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-container-networking-plugins-rhel9@sha256:eb3b06ade23f88d2c5fff03266cefd160f8ee290b6ccffd682737d1bb0596afd_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:5fa3fd73bd6da51b7a5d6b9972656c05f8a8cda8c11d5e0baa403309be30b568_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:756bb3c4ffa47b67be70c8949b78cd730179cc921e34548dc6b6a2ec2055317b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:9c1eef746b903f9413d67b626882fb617b20925abc65012c0f065de1cdf954f8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-coredns-rhel9@sha256:dc59b3d720c2e8240087d7bae474b618ad810d163afd2072bb9c95cf83dd71cc_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:a4bbc63f8b999b10f610479bfd2bc263195ff8ccc4ca95de50c44255fe239a4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9-operator@sha256:ec89a2f73a2677c3927ebe2ef94e15aeefa8f5a0f12f6d8a56518d9214d2df12_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:4a0e21ab002f4578a6fe10e17f7b554281451bb0f815cdc6b1a666d1f528ee89_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-manila-rhel9@sha256:e4985373a71505b3b6fc54f507f7bb7b1f0f3784b3f620922d2acb0d6a82db77_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:39fd38805c801ac414217b0665aff8185e21443b12dace2d803bacee4c1fa1c6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel9@sha256:639db19c66f09e88aa49b83c82dad1e5a929f4c4734e90f972fa71d64e47a48d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:39c18ae19dd5ae0dd461d644adaebd54834ff65f683f4ae931f1d4ae4723cdce_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:6a9c390298d435ef295f6dc519c72537384739b5488728d303d1a0241e6b7024_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:71b797002a41e2a65db626b363d087fcdcc7132c0bb31a81e9ff33df93358d80_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-attacher-rhel9@sha256:cd01abee93ccd53c8219486b51f0496faecffc6208027b2d30db3945282555dd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:2a61cb9badc4493e85d5af2feff77781e3d1ad904181a813c56a672b14d09bc1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:506ee7d942fade0eaae26ba9f0620265b5acef268cdd65f315a1158fea46e5c7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:6b97772819f5c959cd6dd51a8001a1c724c18b93ea6a58ae308919de99b8e479_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel9@sha256:d883c3e9046b700e038e262be59c38c883f812eff94870492e8837a35c7e62df_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:0acd37af56bc8f37c376a1653f75fd574a1f03e5372467817fbd57a6aac68963_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:2d1a58133078190e09ef8a1538c79b75344ca7381a4ae1a04abc1fc435d3259c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:ad573a3ceda45b69b7cdb01779f4be0dfcc448ff48d484283670fc6cc81f81c3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-resizer-rhel9@sha256:b96f8b41bc973cc75a4f25e2c94329a9858ab66bcf286a04b66c37e717762df5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:669a1946b32c4693dfd7eb14bd5dbd6ca4495ba00e4d8d44ea03355a43a8f6d8_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:934d0beef29735e27776129156e4550db7aaf0a29618fbe8d2e362af921156c3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:e76347e73a2c0dcccf7dcf6502a1f7ec562a2a23ea1d6bff9955e6bfbb7e8938_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel9@sha256:fd7891c9ac5e4d40a74284daec93c5d197198999b081507aa81b09f214c3eb49_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:2080b2b3dadecdfbaf8dff2638e9c35b0b3638d398e120b4aaf75193e87259f1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:920ee03f4592b16596f70df20d5ab08bcf50aa529cf4e0715d72884b5badfd1b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:be18cc0f796be7008297e10ce221c7585e5f726fd354c60c9c70367811600747_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel9@sha256:fd4c7e499deda2fbcd9796051e722e56d0966fe6d79d9abdae2c9a9ab2addd53_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:168068f865b740076d08a91fbc1d5dc2b5020871edbb5e6c8536edd8a2cc38b4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:1aebce39a6f1f8f40902fe7c19acb808b908765aa6c8c27d04a0e9fccd73a1a0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:4c7844526cc0a6638b15247d752da961dfb44770e3de4a40847447212029dd61_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel9@sha256:a2f6f1cdad4b4e757700a01cec5313ba5fef6762f9afe6b920eb03b38e1fad2e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:6243d417e3be69b720de1bbc4fdd4a02d5c9eb0886ad17a65f959e8521b2dd5b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:838f2f44d2cffb8784d6975e2c8048a6f22b045b19f65cb1932bd204acacf20d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:8657b9eca6df33d652c05c4ca594236aa42277ed5d83b7757748be262f2ffd1f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel9@sha256:b621d0ced7ba67b95e6cc1bb1ac46d7c22d61ffab73911a6e842c863daa3ddbc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:237004a0298a53363ca2760f37c57bf4aa86df90b32522a45a7d6d1e62203d10_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2e18c5397665edcbc313d994d267f7110ac7a4511ae2872b20030b56d53c7e72_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:2f3cea45a896f37ab87e0158cd2ed9755227200aeb97290bfd083e94cc2aa755_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel9@sha256:7c8aed8496d341dccd00b657ac0bccb85736bc8f230f8b8b5c2e23b6157bdc5d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:48e2118e13670b9fac4969b5ef27be3844535dd74e155b226ede730959186e5c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bc65ced69ac776545ae91cc20c252118a1ae5ca52040adc13471a3732c979093_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:bfd5747ed7610e81b05e1c762abddd33730d9691d7bf702558eccaf2d8e32a46_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-deployer-rhel9@sha256:eb360dbf63372a921ebb2801777515da23f2696c54ab88959a31e132162bf864_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:1ecb15fcbcde6d09a88f85f618d67500f2686d509382359ee7afadc929cda4c4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:643acebd066073f06b4e56fccf871d4ab3745141f95d6ae4ff7845a529e757eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:671aab4c9da9a4da2636b464c1d63ae212012cb9f692d51b0348ac4e8e2d8dbc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-builder-rhel9@sha256:7230b7b3f0ceeb7545f15f4aa9b3f14413831519dcc33e82148989dd76acf87f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:1a66871f3f3a1be705f6e2e9e827548fe4787e60cc382f318b88edeab628f909_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:a39e211fd72b542d54951a802ec169ae868c3c11896362ffb037af065aa25845_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:da748633ba419b9cab62a1fdc59453ea869c789b876a60d61799ffa797c7b040_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-docker-registry-rhel9@sha256:fcd644500d2d6aeba7164042d4a7c001243733a013fb03bac228936da5aca26d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:1061b3a117d19a229cce82c71ba1f794cf74a393d8b82e81e297ba70b9f1296a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:35484c0446d1f5da344ffbfae9305e368a8132945a4d303413ac56a6cea96161_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:996ccc41b34d6020a1cd8978e913d433050019eed3ecb2b237068a6ebaec4181_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-etcd-rhel9@sha256:bda8e91bb038dec2196bda0a339665a7ad577c0432eab96a860c0dddc49f54dd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:4f6ba8a58be758817492ee67cd442d9e0de8f1ab7219ee5779341e38ae5eb221_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:718a8433357205e9edc798fc932ac2c9646cf73f337236bd8ddfad83df7120d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel9@sha256:82d19e573f732d829e0c2ac50959af1c46a99f56ca145e50bb7a8e2ce39f4bac_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:01fcebe30753135fd6ee327d0a6d47af9d20c3d6ac317335677d61fe76cdb246_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12a3ce8500f041e5d633468c3cd6232f2ab2d2deaa6dc0f772154ea258d41454_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel9@sha256:12f7660a386c320c21e4ab5fa8f52693808f873715439fdc5bf3a9e9be7c6450_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:1d74319a501619691fe7cd9c0468e31bff1dc47f8fde14ca905b2a1f4d3f8bd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:a013adc3481c8b7e6c9fcf81c91cdaec36b0b0cb0bf6efea8cc39f918948e5dc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel9@sha256:e2dfc9bd916da523efe7cf8d9b5781bd1fd5448e6b1b98942ba43179a9773534_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:0b0733ae1322008cbd5cefa2684e9adcb743608edcc2eb012e6f539fb1c921f4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:2c39bad93e44749d5dae28a3ff2ade2475bd1dddeeb9df37b86075e4637ba37b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel9@sha256:8f230dd691dda21c368234365be32e6433e70fa5a0f7b3573f5aa9a92b314bb2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:3a6a8ad885b3bd5a5cf9df8272d3a63efbfe012d1c8faed2fc92da62a6339cd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:4b3cf0113d451eb8bd299fa5acdfea061b6196d23cbc1ecbf9bdeea58cf91b6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:6bf525a77285b2547d853b3dfdcea37fe95532909fd9f84b3f74d838c01119ca_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-gcp-workload-identity-federation-webhook-rhel9@sha256:ea24ac03fff16247bd013bbfe459de432f108f8ac2171fec5d020c10b237d614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:048367eaadc6faa635c86ddc8738e2c69f4b751f236ca1194301ca6e46b3ee23_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:2804591b8bc70f5d4c8f94d722de4fb9d01de1bcf329c05b4a31577b6741bd4d_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:9555f021b3a67ed9bbab4d790576efdf6b6b0ade72c82762fb17e94c60899b2d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-haproxy-router-rhel9@sha256:abc9ffaa73a652dbdcd1e1f129a89326f7f019d8c16a05b914ee0708c98c33ba_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:b31c44928be7c2ad68b725e16d893947bdd167a9c3334a34470afa7c4dfd5863_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c444833c75ab0cb21c859b60d646efc826d0181897766adbb2cca0e8bd1dc404_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:c70986ace1fd17011fcfdaa5e347c65eeb297a174f2e700065b3a2b1b88af682_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hyperkube-rhel9@sha256:ce5a7554b4b5060c2f6e9a20b1d019b44751814b76cac88ee39c0e7d413502ee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:460ca7493bafb541ccc78846037f93cec80d89d36f7b206a6702506e58190f36_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:5c77d4ee5996ece34bd2cbe8db0d67293f1fa3ad200e772c89b22e1780844bd1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:cab082cda71e5fc15ac90bf5531bf16087809de92cb63e2da3e3fcea1aff1971_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-hypershift-rhel9@sha256:f60d7422fb298381b43d722ac288540f6d8d328a09f437182619e22675960456_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:7cd604eced9201c4a3e33a6711424f177d0f2f46709078800828bcfff683a109_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel9@sha256:8d3fd2ebe329539551872b73c8fedbe4a35241e8d6109505dd4a7cab58f5e64c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:22067fb096b93bc2a2f5bc7e9fbd4c24a74cf82b8727fa0e8f52cecdebd004d6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9-operator@sha256:80f986592fcb70591d0d484ada9d553ae8f629c5d8925ea980cf26ec9b06ab18_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:26f869722315fba53dc8393e352047e2e92161cd587e78cfa75a9fb01be3d186_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel9@sha256:e80282a0e166bf2a9f77a951fc173dc62a66121204e5438f81485177c6966b0c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:19d0aa648ae210aa83a5e97a2b06aa65706901a5ccd212a938fc10ccf42a2e5a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:25901424f7ed31932e81ea0837a35a7db4221387a6e4e9db21642a38f4278be0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel9@sha256:944eff009f3d57359bb95d5e128013e040da1882572e9fbee5904b822f63d154_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:019f368efa095b6755d82927714ac1d76e464c280962a804f7b57ac987fa0a76_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel9@sha256:c46fe256e203ce54750555a37645fcad5530641333803b40cb716e4dc84e610e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:57530d01b5f3e780923635f7836d8395349862748be4ca4a914cb8aaa617954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-image-customization-controller-rhel9@sha256:933a63d72cf6b21fced937902066a91591bbd8084bebf1cabff295404d826d72_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:5ae7430fca16f2d15ccd499731d7e6cbecdd7b1235cf204e6fb42e412985f205_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:764adbecb0d9519936d5cc4e3b655fe11f459c22f5adbf68e477453366972001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:934702694417c236da7925b8fec9d5fbc05e8ab17e276f6d940a7ee201710549_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-insights-rhel9-operator@sha256:da917f8b81e239ce0f887cb8b4ac38eb798383d52dcee43039ca589ce742575a_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:1c564c62c9e571052fa42bf985c03cb54506c5487a42b6455368cd682a27fc62_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:5cedfc06162b54cfe0abd255912594d29c0c1de2cbb2012c6c971f3803433a8f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:96df9b5b05c7d882eac5256e30f4889a4cebf68787b32b3f095ae9e82c77ba11_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-altinfra-rhel9@sha256:99b947ba7879b2c93efc625f6bc74e1337527e3fd93aed099e9c357861a8a1ec_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:322565729b5ec908d4a929ce4399214faca63960167d1960ff2305c265b2dcf3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:52b3012ff0a5094c4f63e600ef8da562ae37ed850888a0d1676bb315fc4b3b77_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:59c7b4f3651a52f76db49d686b4973f8447f7f3c2462f3ec29d6a34bd4925b83_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-artifacts-rhel9@sha256:cd4432f28c8d1c0226b7d50f27a9ac5383741cd5eb071b4b05b351b38b1ab405_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:50a5d8cef7ccfba30c485076fa284942ded8fe376717fad87a1cb66d9735eada_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:7b291e19f526157e00eaa7b61265280962f6812614d979a24b2ae085162c1e2b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:92a23a3e0fc5e1ce202886f5a0e5fa721503f7e5e87f5412fc7322728663fed6_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-installer-rhel9@sha256:abfd68022d7d1597fd7d6fa900443b98a302e95e55889c5f238d69f50b7fb87e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:08779cd658b7797ecb4beeaea16c6930240335c7393df96bd4695ca44c71e1e2_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-agent-rhel9@sha256:2c03dde85b9dc14c5745fc27d74995e65c5c09954f8bd85ec9a0d5f699ece894_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:b75f60a38d71d0a0c39b80d13377ac8a2ee68e4e3aa9b6a330dad6a528acd73a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c40e1f3de88dee5af203ccac3afaa4be04a5ec6fe6c820ded143adabff5127f9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:697c50b7ec51dbbe84faf2dba227daa8ea6beb6133cf811981a5a057b4911209_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-rhel9@sha256:e5beec6b8e88731926f4f03ebdbda0f08ad2a2359839d1c979ac1d48547ba192_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:46127e5a5c0facc56bfab8a4fdb7c7bc8e1d19d1c5af494b1c7007b61babb786_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9@sha256:a8f772d94479a27d08c748dbd9c0f8e28c2cda3d3ca578cd8d1a1a25b5ddc614_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:220d9bfd07b223abc4a8491f8f3c17af90cae9d38788175ba93d8d4806ce6e64_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:7b9513eb60a94dc836cd8bb982b5936ba6969b73391a50858c0edd2c9680bce5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:87746f8460ad47c5dfe85393451c33a1895888872bff4e13b74bb7007f0adee7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-keepalived-ipfailover-rhel9@sha256:cc366558565e8608ac6663bd0e646f784a1db76c04242baf5ac8ab1e8a51bbfb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:0d6cfd901fccf9c90aa7712ddf88a5c625c129c7cf81bcb006b28d5eb7911482_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:2aab91841741c542a3b47114c2aa267b13fd5384d9f806e6d850dacb51d00cf4_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:8d99241b0d92e44d72a88ead99ab624ab5b3fe4e7a9dce52d4f14bffbb59f1fc_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-proxy-rhel9@sha256:a12c1846cc29099f6cf21da58dd9ebd2f3af045939bcc4e155c359ba961aeac9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:0fe8382f94c99495722eca44cd669cf060402c078e5f0687f0918ca7789ab53f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:236b716621a88efd57cdf6f704340fb2faf4583651ecbda524261e0b5a9b39cf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:623ae8c203aeebdb0242f87a92d909aa447bd75cdd86e95ff88d5712f5893196_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-rbac-proxy-rhel9@sha256:c7989695c15f10088861b70e2f6f31bfb5954d882de137e88d964aac9b1e9bec_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:4be6454ed7cf269caa661c6316381f3bf86362ce624892324518676ff1e2740b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:9cefdfcbe84758c6d5a060c33704f21ffa1cfaa3c8e1efdf54dd5f67524def38_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:d3168e73c5aca469c0866d35538598a06caf59d30585f52695d7935e9c430940_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-state-metrics-rhel9@sha256:ebe08cf11d42c455ccea45fe7519403d9c9ee70797f7b09a6708b2cb89e1cf30_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:8ca8b9fc3712ec5f150cfd6fb2783f93e808511570e6020a356726f60c3e729b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:cde2517632954184901c04e82e6dd04b778326b733cd269fee26f6c03ecd341f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:dc87b2a4443257573824938eab7ea34e2301901206d3dc3972a1a3b8210ded3f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel9@sha256:e18a2cec4430a77ad205ff05a35dc5a841d62c7b3d176794126ae3316186dece_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:a3ee716ff54d8c12db6cf90f1bad52f0bfc7fa2c370a833c9dd2212b63feebcc_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ae386627b78fb181b739b5430be49bea5e340fd992f3237a69cf55e265ba0b3f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:cd0d40e71cce9ca0651ce655d4e49fa0f34dd97d2a59b6120170d7380fa9d8eb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel9@sha256:ec04ee68939b4d1ae1cb68cd21aa87e8541c3baca41930092593751257044a6c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:299694499fb8aa8020237c452600f00a6a8f7841e2aded356e773510ed3cc5bf_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:85aecc6f2fcc34a7ef02b52851e75f67e02bfd168955c37ed38dcc9dafe7eb18_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:b29af44f516ea575573d7aaf05659e1b92ce796c1d76282ae64ecc56c46b7f15_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-libvirt-machine-controllers-rhel9@sha256:c34e984d4a2d79858f16bedb3acfa68355e3761ad45820cc4d71a4cca328e3d1_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:7cbe10dd1e971fa211d991583787a0f9b5ac01eb2bd38f2b2ec6c1689869fd68_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel9@sha256:a4ce542616cdfb82902001296ea42da16e48130696a490b569c96a8f24cb43d0_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:37911f6505641d8b4112af04c778cce48530e2b5f04cf6f4605dc1fb38524826_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel9@sha256:863c4ca26239640a3dd717a5c9c971d8286c5c52dbafb2127b136a2b69df42b5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:4068d9776e68f99d0d1f76ebc8c718b6fa5dcff842e7e646edfa63dbd7cb829b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:5f1431f5063a2a5d3878b7470daccbee5a4cbdcb6c7ee4c3ad0a091744f6682e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel9@sha256:b748c4031cd1cc600d67d9f92c5627f75adb7e9b7db6ace7cb304b0f25ad29ce_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:3e4c3a3175c28f6a3913f91e916e9ee64cef94dcb75219ffbae3316306e221f8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:7ebf863ba28cc992c67a2a1f14af80c6aa42a0944606665eb10490c4f891b11f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a3c18a19f645a926d597730520f40c2b590d3b8ae31267840f7a33e54cd6e001_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel9@sha256:a993abca9831186a393e0d72f690300f2aa5198a610f699a8bcc8fe1a5f0647b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:7b22ee599effb14102e28c95a42e13d67450924d8564e668b5cf598bd65379ef_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:9dea325d1febcf350079243ec6590f4381789aaf3a6e63bf20f79ab601bdcda4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:be8e3964b28a828fd11ac1607ddeb1a136038d45763874b7b9f5135b31c8d375_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-api-rhel9-operator@sha256:d0c701df4c4e70675fb205b93ebbcdf2f998a8f3db8062f59f3ae504420a1295_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:4bf087efea7c2c84cfe4ca54e89fda96b43c688b6d123e876c535d2f8be04c5e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:5281c30fe4e02a54aaeff2df61a9c337616d56a6b12d710206dc74fce038c5bb_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:95c88c32119b1b06388bd95918469997e3983a0441b946f96a4e526b261db79c_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-config-rhel9-operator@sha256:d456c7ff02726732abb583bb5b3c2216ad13e73a1642b633667200cad1cdf3be_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:1613f5372bf98945b74fd5ee5ce8763fa519befd15eff91e5fe49121edbd82c8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:60fd529dced558cea346e5f475e32dda99ab27ddd84c445b549dedbd741becb5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:6f54b61a00f28f2436a9152e0d8aacd6783ece9427d90a20a4e7cb64ac888d20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-machine-os-images-rhel9@sha256:c3bce99760380e6955cfdf7df3262d47df27e904a236a2979a3be375e6b685d4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:10788bafad062ac72be2c44ee3d41131f8bbfe0bf7ed488898c38a5026afe3e6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:184adda87a014cefdbc1725c53d3db000c9d4fcaf5f02ddd8a83f78d091afd5b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:33df33879eb1d4ef00ee04c674fe8e2b6829e560ba5008bd4c0af5bf077221f0_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-monitoring-plugin-rhel9@sha256:89ab935b1141982ef908e36afde7d2a39a05fb6f2b073e0d5be585eabce536be_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:81f9975349a6e75a75e2f68c4fb4d8566b2ec24e189a3561a8afc09669673399_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:9fb86b435d0c41e2462a376140c907ce301ada5ee84871cfe02cd46d9138086a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:b8edbe7d57e852e049e70b18ceba52a8f947d83273aed02a45ababa83f3a3b60_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-admission-controller-rhel9@sha256:e4271a50406fade2fc91439a6b5f8ec69253437be03ea498bab0a557940180b9_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:408e93743b1593cdcb6ce469fff467398a90b39214f7acf0b37b4895c8b47b6b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:5239f41c7575c285e1f64ed9effcdd1933978aa8b490d172d634490a5aed366f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:55dc407ab5bb8858e89cd0aa8b5eb45a0afd07110d7930c80b54b1bf2880c1ae_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-microshift-rhel9@sha256:6b894da705e0ba383443504701b4110ecdf5098581601f7393f60446c0fedf2b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:aa5d45f30e28c44b50e9ae44d6637e1db6f66b9d710c95e3780a553bc96b414c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:bdf16faefb44447864fade4379ec9328810dfeaf926b5219aa124d161bc39edb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:e8af076f84b67393306d1c5055ccd80a3704d771786badb22419478f00040fcf_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-cni-rhel9@sha256:ece2c5d99b5b1a34d987eed071fb1a2af79076e987ab169b85fee5f7fd6c77e2_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:0d0d78a2a770cecc180c4fcce678f090e182ab2762b80ce93c57f7a2ccdf455c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:190f7f79e54717454bc2cecfa0a811ed4ad40145e1f8b505d721afc901d2c8ed_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:88ca7dbe4a5ce77e72160d1d5b483abd9ecb2b4b53f0c1ac322d4da0f2d28697_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel9@sha256:bfa6f9f4f67e485bf0f3b461c4a1e35411ce945d2841d6d500430f05b6e4deb9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:9aaa31da2a02aa504324eac3308a5486aba2fa9cc2fac7f3f2b5cb5bd4eefbe3_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:ba5af8727535cb9f8f87cb504adf6beedccb43fb339b1ae377960222142b3942_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:e1c268ff386f98c56249e71a6577d0d5152ee8c331fe187c5ad3fdcc12024750_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel9@sha256:eca32e12bba8cc24e9d313609c4cc83dcff972704c17585f631169db09afa70a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:527e4c1aeb8dd9082f046badbc8c023137819d1532ca65938ad7f9055bcb37a6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:a294e6cdc1800b36e5e508d87d9effb7c941ab198ee8288ef5b797fe13f97ce7_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:cef4f72946addb5c235573c96d0f244e85708fc3d9e6c7554d640492c405a7d5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel9@sha256:efff23554c2d2bbe7264dc5145c0b0624b58694594daa7a6eb3da8281bf06f0c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:012aa92b409a714cebf0539a5ad5174265bb8581b0bee651ad6f23b6cb231326_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:409195880ddbee6534d82ee769674c18a19b4d8b1458788cfa1f1a3c66843d6f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:dec5ac5a57ad5479a23add5512baab7e6b1a96eaa74f002a56bba03a35d2c361_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-must-gather-rhel9@sha256:fca28f63f97962231b0a373f9b0a154aaa48d00a9215a8e9c4d479dc9540a55c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:157ed410c32c70f1559c37f6d49629938ab378bdf93d44df988503085fb2fa61_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:809fda2d99bdb96325b2a0276ace93cb5268df8a8f0e3bf91d8b14ad23205a61_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:c19185737a47ddbbda89a22d7124e82ce7328cab20c49cc130f09466c742b555_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel9@sha256:ddeae3d09636dbc1fd8d593a01ae90ef3f70b280c302cf7d4153be6d31e3fa67_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:258b0f1a9924896286ea46384a60b36d5f77325a4d06e74f8fd9d98b2f076f5a_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:32d13f9caa00b54a3d37a6a9cd27b551eeb723dfbd5654b9ea5b5af93b967d33_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:73773016b9af9fb05a7d496641c0ef09153abf64783dcc127f15e990f94dcdf7_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel9@sha256:7aabb8d07dd8230091f9270f385e65284658260658c7282432d4767b6d9aa441_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:16e4fa4dc47f6b9bc506da7b0068e0d5712090c57977e15ae5ee6b0b72707e6a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:5b73be8947ab97748f430da5edf3ba7ec5e0ac34ba48ad309c876924423e67e8_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:98ea6abee35ad69f4a2fb098218a73c598cf16089326cc29dca3d923c8ea8098_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-networking-console-plugin-rhel9@sha256:e9a5c5730271ac9d1e1c86b4b51b945c8355a4f153d0b7431c94ccc18075790f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel9@sha256:a129d9af12fbf4650ffab9d37f79bdca2e9373b229610482421ca8a306c3fb65_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel9@sha256:a04ab03fbf8c0d37eb0fa2037e3af2025593c55a502324447d477e89bd5537f3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:4a9abfd087f539a1728a0677ad912ba0d5fe061ccff36fd982496e80425a0f11_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:b9e53df82067cd67fdf046d358f3d10804854f56062857f8af5a6bf44308b368_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:da970b1d774413159bb34c8df56fc4c5a6ea4b312c9b14231127bc3f93b3d293_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-apiserver-rhel9@sha256:dd03048f9f5a85d26d58f264df0e48de05ea612d2f3857bd784416c03b1facf5_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:784c81357bb24d08d8a0eb1732ea1f86c2bd75215805921c9c27e96fb073f50d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:8df74cdeafdfa644704ff55661a4494fb466bccced67d806727cadc709d401a5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:a4547eeb77fc98793e9389fb93c21c4f08c51250f88b6ec1d8b88347db6427d4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-proxy-rhel9@sha256:e4f4c30fecb4802fe6c82cd890dc1a62ff11e8b71fa46cf6d738cc9726a80d9d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:2f5ae9a68be08b1f35ce498ef7c62bd9c550cb9cea701d43a8c26dd01005a912_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:c6129308be05d43ca2d2714b796bb15168c72f9eed10b49327bbe9399759286f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:e938171c219744eb6505811d000fc4a803d03bb68e07c7489142191bef101b45_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-oauth-server-rhel9@sha256:eb09b805190c688e0fe54e5014f4c7c4085871e64a25f51231d0f633e0f27fee_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:66e1ee3f97669e8da10d116853d7e0e0c4ef5e86cad28c591e24d42054ba4ede_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:b8a2a1c648b3189e5446aa5c75b807a94b6ab343b1a47ac8df5a5647f1228168_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:e41069eff1bfab5bbc5c4e09f14e4b3e8e28fb4c625490df7bbbdcfd7d054194_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-catalogd-rhel9@sha256:fb92c02ec0e588d12fa099314304f6fc5e901f8e81e762941b586533b0cd55af_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:1fdde8637d12a4352fb17f01d7893c83d42625582ee67857493712b28164df96_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:4d1386a55f65fdadfe58e2c9c6d014e6a26ceee06641be537118fd42fb799ac8_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:b421e9e369d1069b773ed083a460f2dd65579eb1c78a4452a5f8752f6a9cb8ae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-olm-operator-controller-rhel9@sha256:bcf562c9d68d6d40b630823de9905315c02bc298813ba8b524ec12bd6b6be608_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:2d20d931f3621a0614d4a0371143266750971f55a8b56baeada06c376f1979ef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:67eb653cb707f4f3331bb3b782a2c3554aff55aed1d2209efe651f39db88eaf1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:c3b3d4d90d7574d16ffbebf62598ae12362faf250ea21fb48b9f656f7fbf52fb_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-apiserver-rhel9@sha256:e8f60ddb632ec3cc2146e436bfbb7b002a1f5c380f7d8765c44a9ce1ef72041d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:2dbf19dbe2f94b4791aada7f179c35adc10e33bd9e0595455198e25c9e69add5_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:597dbb47d54a60d34a3029c9c29291cf2182d84238ae1ea4a5de1de40a851d79_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:74d29a37becb2a082f4443b8222468e7f409c6435ceb94f5c2532179415fe239_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel9@sha256:b19262b93c971399c8be5a7154fad5b622fab7fc5c4f026c1d21142da65cfcee_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:3f686b24a18dba720ab717133825f8833a491407a722462905aa95b334ca4696_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:702659c8a024cae6210806539596f925c64b5d556dbcc76bf2dc09f634a4f878_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:873240e2ff139b191d18b68b01c4936c9349757d223aaf1a217c8c6973b6a269_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel9@sha256:da9b208f2c336fb0670d578baa1dcc053ae49160f61963fb0bc138a4f72a3c3e_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:1eb21b5ce33f3adae8b43c0b4b7e7b59d5d03458611b0a04300e36c249769483_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:3821667684bc1dd2863555587bb55d478c5ca3541e736082b74fad96ff22b28b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:484236b5a07b435f86acc9c5e1939d06dfbf359d8037f2d59295dedfc58f425d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9-operator@sha256:5725b7fd2ab1c704bf15e6744bc40e10b9e3477aca24b408cbbb2441ff0d31d0_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:5bf1480106af34e624b49bbf0c51b801970715ce6c88109e0f4e2e32a1dac8fa_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:64808969480ba906d3a6f5f8b08b70af7631941ef204a3c9ec5d6222c7ed9aef_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:a43fcc22f6797086d5f5a28b6cae7ec94d6185aa96d66452f5798535d734f90c_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel9@sha256:b23176fdad1163314da1bead90d400b364f08f41c286e31c9684d3d86ef5203a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:658a9c0f26971fc6cde475326d80aed6d05fa8372b62c2b3b912550c3ee3d91f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:8c2ee2688be91999da1ca4c4ce4d0e2446c936fa04a89dfed46ef235c18e767e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:d6778804ba60be31ef5a503f061bbc923eb2d1a569f25554be3c31fe8c3b73b7_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel9@sha256:e14da1e0007965aa54813db07252f8401388a751679525dc76547e4270142ed1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:566f54cf183d47fe6f075a49004d483b18700282a03027929a9a4f7a9dda60da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:7530aba6f9f1ca1fbe2b315fe51a4a35496ba64783dba85e3ffc4f3f7512ad79_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:757594cb24fdd1842288983963822ad0cfc6fb1a3218f1b04dd19d83d709c8c4_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-openstack-cluster-api-controllers-rhel9@sha256:e0fa56c043e156778cce4f634250d4e120d80eacf89eeac86e43deb31280a284_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:0324d64ddc7ec5895d2a270227e48674c261495a86faf4ad7abb8dc7a490325e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:299a6d09a32cd41b6c0b758844018293974a575aa428c1417f1b54e95bf1ce9e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:75b742bb6a20e9711288334a3f4bc17f8195717419713be870b2fe1b6eedc5c9_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-framework-tools-rhel9@sha256:7957af4cd0574ae327153987d46741a362a30da8cb91dcb800b0131ae44ddff6_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:48cc1c5936e5b35e40c82f81643ab40ab913eebd082eb059165f3ff81b99d99d_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:66f6a9bbdd24e7f6d1653cfdbcad28cc243793002308e1113095fbd1dc9f33b3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:88472b642be10b713017832c7cc7be80ed0da1f55731702c2d15c713bf6fc95b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-lifecycle-manager-rhel9@sha256:cc143030e7105e1dbc7f2eba5106d6c8e0a54e40b1382a34b1983df48291109d_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:583de31420f3fbf553bad44aa1a0ac7d89987ec83ba4c7f098fbb84827f2adae_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5e8a8f764cc7a986a4d674283d362ef5986f0fd32768bcda0c69893028219bc3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:5f4a1b73a0acbf2c5fa874bb06ad43920248431465e8888a23d029024cba4a39_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-marketplace-rhel9@sha256:759e345c6b86bd1a1e47f61464a48e9144d555f5fbc20aeb10f4be8e048e5a0e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:3e6310d99f1fa576292e46c1173ece1a01e3d506aa7748463d37f682c2cfec46_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:4c6bbba6992696aef1231e34a3652b244bca77d4d8d368d57cbc052ef16bfcaa_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:cc7e510331fcf2379f915c25c8a993c18478b9f996708072b93de36d54debd82_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-operator-registry-rhel9@sha256:fc406c56c883d9aa6306718eb00d6993c3a4302e77b2bcf31510389234c958c2_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:01f8ce1cd744ddbdce9315ae967a6a3857a7d067aad1401f1623275066def6e4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1aa184f1794b8f05e8bcc0ebf8ba32786157664b95fad3d28e553d578e8caa53_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:5d0247354c108165b2a089b15c54a20bdab5bb51f8de5ddc7e43f4607a720b21_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e6d26d34260969de8a54f2f3384f1c9e34a91e145cd1beedff7d35b938807648_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:3347ea64b19c861ff2c3b4bac783c4b7df93e02c8442c3e9a5b80f46081a9fe4_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:844116e20fc34faaf14cb7a17182db3aaeb7cc4157cc356eae83da84ad18e2bc_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:8e85bc10d58fd549551fe0be4cefe4b677a2118cfb3198c5cd70f18792652bbd_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-ovn-kubernetes-rhel9@sha256:f49ae2baa8161a14f6cd528bfdc3927a3b96bb86c5aaff605c1561ee812108ff_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:18460fd76ca550a5c6f09e213ae7b319598e792bb4b1374a0352c102d3cd429f_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:4390aa2f067a6002b3311c051476117559377ab5c2ea3e7f372dafc187d0e298_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:8ebcd6745e15ac3776016a78fc9882f5ca05f5f6afbb5edd97edd70377f667d1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-pod-rhel9@sha256:e9f3b5047a90937b7665fc2dde3b5d1742e4573f3e712d63466ce1b37fbbce6f_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:915ceff6d73dd9c552e961db39a6dfc6c42fb35711833911595ecf67321266a4_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9-operator@sha256:fba4d714efc095469135322948ba4e06303366a65e631867b602f415da2d6c38_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:206cc46dc1980724be995259d1213eaa729bd933da5c61c161d3d977a53a399e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel9@sha256:ccc2851dd15267900a30cbf5f0b5ed90c23017aa9427eeb4f422b36b01671934_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:3af17c175afb06a9c482884e7e8f757f94770cec6c63ae097521797dadc5a34a_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel9@sha256:a7c8dfca21beb16ca21048c41406b3d09ac8755dabe722423d7710ae5fdeb0da_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:07b86607dee8af50941a0f5159d6687b406d7c7564841254466018903fc3bdd6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel9@sha256:38a8c0c4a73cbf0ce80ed17122ef6264d7e1d4f89495e7ef70c93c6f53a2252e_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:44045128b6a1d261c04a5da941f1902f19901b8f9bdfd673ff21dcffbcaa4dc0_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:45e9fc77c039a9fd61673cdad188e945b2517e0ae19ee48d9b40ac2f049309d9_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:4d77c04315932deb04a37a723b5aafdd4df1b4ddf39dd43f5be160dee88e718e_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prom-label-proxy-rhel9@sha256:c1e47a98e46534b7a78120644842a135d3c5ee5def83b356fe3bf362d96d85df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:20caaf568195df163952e00dc38169e24c83d8eda5c650e5b50cee8ee2661952_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:33a51815b540b73fa2773da97427218f59e90cdc149ede502d421b4e7f09f68d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:6baca5a16d778b32aebb75945d6956d181048e3796c8b41b739a07273d81a328_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-alertmanager-rhel9@sha256:ad3812f01f8ed15ee51b2a20cbaf34268b9fa9874cc9f40d133c195539271721_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:b2471b54908869755576c4739a8c45f89c1ea02c273085eefe335f8498f5b0c1_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:c946fd80ab3fd5be83804b9ac049b113b7b33fb863a611105ee1ae7a1588fe69_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ce4720f9c609b009c6030502a916d64be339178f5e2edf5297d4f6295135b3e1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-config-reloader-rhel9@sha256:ec8621f3583b14e5e8930943aaac4b02b986ea98f01de4fae4d0c311144fe25b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:47d0243eac36d9306f1c0a269b16e69d339cf96eb54b179cf5a908adf7f7ac20_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:aa9ae0e929b96b2ec041f8bfb7e8a0b5c4cfe6f81001bd99e4573454a3057840_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:acd474878bd0f5facf0050bcd76a7a7586681ea62fa54b62078f61338eaf7cef_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-node-exporter-rhel9@sha256:e0cee84f72fac4387e941f6cab2194faba9ae8dc0efa41eb03cd167f403e494b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:4e427e044b91fd14da57250442280c0cc04e9bd378c9fbdf2f8393fd44db693c_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:c756e95f897902f18942c4a7fcc073dbe97c9add569bb8eee5dec0b4e3b794ac_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:f3d589c36243274557988d60df708f9aa4dab71acef6a6ef36ffc5617a8ddbe1_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel9@sha256:fbdc0615770966fc259b059fc4bcad9da58d215f7c44a5a4eaf846e0e9c03621_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:53ad62fb8d165f33da97e5b103c2dc65c100ea92d78a78180e886dd95e5b51b3_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:66a15a3ff121fd3f62fa7046d1060705cb41846642665d07fa4233295c19204d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:c356f8fae661835ae94bd09da637917c026c08e4f7928fafc3d9b43093c593d3_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9-operator@sha256:d32738340225e677b84e9f95ae40728f895e6cfcceca777508362e83515a9866_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:69759b612bd289663fcbbd357d1b6c50900e7f6bc61133ab8dac4b0becb5c15d_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:83f30458d68377e0ef85858b08b48af53bd02f6c20308a934e9196d719463505_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:b52459b143c2120bf7b8560217e22edaf5d2c71dfa16273014f5944d1297b9ec_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-prometheus-rhel9@sha256:fcbf24df5b0d292c2b13290922f442123e0c66e5bbe71ca58bc4b1fdf7ff954e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:187f9b0a3870f29230341708af35ab9befe217fb7d5c9c0aa663a365175b3f83_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:7e918c0ff3c6571c68ae7bcf6b7aa8c36b176c18ffda498ee18b6d3130042344_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:a409b6cb75dace452f243574d1e9a1d6b3cabf96bf9b88920af2c3ec082d8164_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-service-ca-rhel9-operator@sha256:aaac216542e65fbd518ccecb4f19011fd0d9ac15839f195f5b0207589b1cf661_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:31248311c19b8669f66e62f307874a6636eacdfe2908944487aa900478572197_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:7a3e28e31aab079b6c3d1aeff42c125332c0228350db8cf2772da0588ce40c63_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8b736b182ef8c9f60924a20476d49901c54ce092b12467a156d6b847d2cdde24_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-telemeter-rhel9@sha256:8c9d65fc77ec6b7ca1c1fe24c8a345ac66dc32d973b3c984fbe520a5b80c87df_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:1464e858f1a87d27217aced35ff34f801ee74b43025dcbbf15592ddcbbf80710_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:204d583e100e57c3403990606915a09897943ab717c0a92b041c3df5d3a17ce5_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:593078d662a4e150e02303b96dfdf50182c759cddba08cfbc5b2f1b6d86d13f6_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tests-rhel9@sha256:e846b60da6d230836ef8f26bbc356a89fd56e1c52809fd963f256141b8a1a5db_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:099583892de53387533f2d0766bd903a6924cb36b9c8057b49618d53158a425b_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:2817cb3e71673f6ba34deb8c82e0b1b96c0c615f948e2ed1961e53500836f34b_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:a2241967eca065515dd534f100a7879f017bd649f1d06b0ac266e0b0a4e3bc5f_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-thanos-rhel9@sha256:bc1437d1fdf26493e447e41d17b73913101dcb0f47f146d3a116c869df9cf29b_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:23582074500e10132e683e8965836e94b679d039eb0707ecc6c1fb8519c63b91_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:34cb7ca74d46a93f36d5c66d43309476cae880d55089587364820312fe87025c_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:554cac729a1f7d9fdd9782e3df095cca81f542a12be810987402c94f504b510a_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-tools-rhel9@sha256:a344ef038835545929de31f1b8251308c57d5e97eeb8c7e84dc3c91566afc260_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel9@sha256:a9da752f8e91350aff2196b2c8508fb7add67bbc1d0f425164b86bd5d2d01db3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel9@sha256:91d7aafd063dbb6af0174cc1724fd6a7f7c034876cb05242d53964e99482eb1e_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9-operator@sha256:e7172b779fe09e8e763ae896f59c5c9ab1d594e2dce016d9e422b72a18e02b25_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel9@sha256:c186ab5ff403e5ada04d48b1ab1232e17c02649d8b64d92b842cf00e203ede02_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel9@sha256:4a25af1636de5261979ed9c1933720d9fc6589e879132560b86d33e1025daedd_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel9@sha256:04a9a657f1ecc7fbbc5b5d89051efbbd9236e0f28b8ea1c6091f02ec92a48cd3_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:21b4ca7be8c9a3d015c2fca7b736153305c9c33dda293ce13fb968660f7d2857_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:23bb7dd7e0b137cacdfb9f5b09d79b907fa68b0c3bd905d4137af11a791f1682_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:3ecfc83f7fb75a9c14998bfc1fd4ed32d1841545c87d9d6747066428864f3edd_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9-operator@sha256:83c4e164cd3f0b22bd67a1857f7f2d9c3bc82aac40bd0acdeec8362772ce4fc1_arm64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:047da507bac58443a323e8238a925438f24f36ea6b296266a291940c95bde86b_amd64",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:4284fa5793d1dde8409b32fa5bd196f11ffff696ed15c354a71dc91a4069a30f_ppc64le",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:783dc270a2c8cad0dd4d80ccb29bafb2ddc01cd38196d8ebd48db15024994e95_s390x",
"Red Hat OpenShift Container Platform 4.18:registry.redhat.io/openshift4/ovirt-csi-driver-rhel9@sha256:7dc540bf44cadd1bf872470e25985c3ff38489fe81eb27db50edb94257186911_arm64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "Kubelet: CRI-O: kube-apiserver: Kubelet, CRI-O, kube-apiserver: Denial of Service via SPDY streaming code"
}
]
}
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.